views:

159

answers:

1

Possible Duplicate:
Try to describe polymorphism as easy as you can

What is polymorphism?

A: 

Please read MSDN which covers it in reference to c#,

Basically a derived class inherits from another class it gets all its methods,events and properties, and every type is polymorphic in .NET since they all have Object as their base class.

curtisk