ABSTRACT CLASS Definition Abstract classes are classes which cannot be instantiated ie. We cannot create object of abstract class. It acts as base class for other class. An abstract class contains abstract as well as non abstract member functions, the abstract member functions are implemented by the derived class. Purpose The purpose of abstract class is to provide basic or default functionality as well as common functionality that multiple derived class can share and override. Properties · Abstract class cannot be instantiated · It can be used as base class only · It contains both abstract as well as non abstract member functions. · Abstract class is not sealed as sealed access modifier prevents a cla...
A Blog For Passionate Dot net Developers