What is the difference between class and abstract class?
Answer Posted / kanan
Following are some differences.
1) You can not create object of an abstract class.
2) When you inherits abstract class , than you have to
implement (override) its abstract methods.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Which is better interface or abstract class in c#?
Why do we use void in c#?
What are the Types of caching
Why do we need structs in c#?
Does c# support a variable number of arguments?
What is msil, and why should developers need an appreciation of it if at all?
what is object-oriented programming (oop) language?
What is private class in c#?
Why ref is used in c#?
What is inheritance in csharp?
What is the difference between gettype and typeof in c#?
What is the difference between malloc () and new?
Does c# support #define for defining global constants?
What are the steps to make an assembly to public?
What is use of abstract class in c#?