T Tom Shelton Jul 27, 2007 #2 What is the difference between an Abstract Class and an interface in .Net? Click to expand... 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.
What is the difference between an Abstract Class and an interface in .Net? Click to expand... 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.
S Scott M. Jul 27, 2007 #3 Interfaces can't contain any executable code, just definitions (interfaces). Abstract classes can contain both.
Interfaces can't contain any executable code, just definitions (interfaces). Abstract classes can contain both.