Hi,
Ques What is the abstract class in the c# ?
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Jignesh TrivediPosted Mar 6, 2012, 12:36 AM
Abstract classes are one of the essential behaviors provided by .NET.
Abstract class is a class that can not be instantiated, it exists extensively for inheritance and it must be inherited.
Abstract classes cannot be used to instantiate objects; because abstract classes are incomplete, it may contain only definition of the properties or methods and derived classes that inherit this implements it's properties or methods.
please refer
http://msdn.microsoft.com/en-us/library/ms229047.aspx
jit sunPosted Mar 5, 2012, 11:03 AM
http://msdn.microsoft.com/en-us/library/ms173150.aspx