#interfaceexample
Explore tagged Tumblr posts
geethaasrinivasan · 2 years ago
Text
Interfaces in C#:
•Interface is defined as a blueprint of a class or set of rules that all class that inherits the interface must follow.
•It includes methods like abstract methods of the abstract class which includes only the declaration and not implementation.
•The derived classes must implement the methods declared.
•Multiple inheritances are achieved through an interface that provides complete abstraction.
To understand better about interface check the link below
0 notes