1
Reply

Define Interface & What is the diff. between abstract & interface?

Miky alton

Miky alton

12y
2k
2
Reply

    An interface in C# contains only the declaration of the methods, properties, and events, but not the implementation. It is left to the class that implements the interface by providing implementation for all the members of the interface. ... Implement interface using : syntax.for deference refer this link https://www.codeproject.com/Articles/11155/Abstract-Class-versus-Interface