Hi All
Why we go for interface instead of abstract class?, why we go for explicit and implicit interface? because we can implement method with or without using that particular interface? thanks in advance
We use Interfaces instead of abstract class because we can implement more than 1 interface for one class.
When you design your types so they need to implement multiple contracts, interfaces are simply the only option.
Refer
http://msdn.microsoft.com/en-us/library/scsyfw1d%28v=vs.71%29.aspx
© COPYRIGHT 2025 ASPSnippets.com ALL RIGHTS RESERVED.