Why can't create object of an abstract class?

Posted by Gaurav on Stack Overflow See other posts from Stack Overflow or by Gaurav
Published on 2010-04-23T16:30:16Z Indexed on 2010/04/23 16:33 UTC
Read the original article Hit count: 194

Filed under:
|

Here is a scenario in my mind and I have googled, Binged it a lot but got the answer like

"Abstract class has not implemented method so, we cant create the object" "The word 'Abstract' instruct the clr that not to create object of the class"

But in a simple class where we have all virtual method, able to create an object???

Also, we can define different access modified to Abstract class constructor like private, protected or public.

My search terminated to this question ;

Why we can't create object of an Abstract class?

© Stack Overflow or respective owner

Related posts about c#

Related posts about oops