Abstract interface

  • Thread starter Thread starter Guest
  • Start date Start date
What is the difference between an Abstract Class and an interface in .Net?

The difference between an abstract class is that an abstract class can
contain implementation, and a interface can't. Further derived
classes, can inherit multiple interfaces, but only one class.
 
Interfaces can't contain any executable code, just definitions (interfaces).
Abstract classes can contain both.
 
Back
Top