Home »

What’s the difference between an interface and abstract class?

Question ListCategory: C#.NETWhat’s the difference between an interface and abstract class?
milleranthony7 author asked 9 years ago
1 Answers
jeanderson295 author answered 8 years ago

In an interface class, all methods are abstract – there is no implementation. In an abstract class some methods can be concrete. In an interface class, no accessibility modifiers are allowed. An abstract class may have accessibility modifiers.

Please login or Register to Submit Answer