Interface is a contract that defines the signature of the functionality. So if a class is implementing a interface it says to the outer world, that it provides specific behavior. Example if a class is Interface Read More..
Interface support multiple inheritance
Interface does'n contains Cunstructors
An interface Contains only incomplete member (signature of member)
An interface cannot have access modifiers by default everything is assumed as public
Member of interface can not be Static
Class inheritance represents an "is-a" relationship, e.g., a Tank is a Vehicle. If your situation doesn't at least meet this, choose interface over inheritance.
In C#, you can only inherit from one class but multiple interfaces. This would be yet another reason to choose interface over inheritance.
http://stackoverflow.com/questions/6188827/inheritance-vs-interface-in-c-sharp
http://www.dotnetfunda.com/articles/article1185-multiple-inheritance-in-csharp.aspx
Time is Gold
Thanks & Regards,
Rajesh Kumar,
9962038582.
Kalaikathiravan, if this helps please login to Mark As Answer. | Alert Moderator