can we implement polymorphism using interface in c#?
can we implement polymorphism using interface in c开发者_高级运维#? any example .
Yes.
E.g. See the way many collections in the framework implement IList<T>
so code that only depends on that interface can use any of those collections.
精彩评论