difference between sealed class and abstract class?
Amit Jain
Hi,
hei sealed class is one which cannot act as base class.ie u cannot derive a class from it.where as abstract class is a one contains abstract methods & non abstract methods.abstract method is one which doesnt have any implementation.class deriving from abstract class has to provide implementation for bstract methods.