Difference between an interface and abstract class - C#.NET

Difference between an interface and abstract class

Some methods in the abstract class can be concrete whereas all methods in the interface are abstract.

Difference between an interface and abstract class

- In the interface all methods must be abstract.
- In the abstract class some methods can be concrete.
- In the interface no accessibility modifiers are allowed, which is possible in abstract classes.
C#.NET localized application
C#.NET localized application - The System.Resources namespace contains classes and interfaces...
C#.NET assert()
C#.NET assert() - Assert method is in debug compilation. It takes a boolean condition as a parameter...
C#.NET Difference between // comments, /* */ comments and /// comments
C#.NET comments - // comments - It is Single-line comment...
Post your comment