0 votes
in C Sharp by
What is an interface?

1 Answer

0 votes
by

Interface is an abstract class that has only public abstract method. These methods only have declaration not the definition. These abstract methods must be implemented in the inherited classes.

...