tags:

views:

153

answers:

1

can we implement polymorphism using interface in c#? any example .

+4  A: 

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.

Richard