adspace
What is the difference between interface and abstract class in c#?
Answer Posted / Kapil Deol
An interface in C# defines a contract for a set of methods, properties, and events, while an abstract class can contain method implementations. An interface cannot be instantiated, but it can be implemented by a class. An abstract class can be instantiated and inherits from another abstract class.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers