What is polymorphism?
Possible duplicate:
Try to describe polymorphism as easily as you can
What is polymorphism?
+2
a source to share
1 answer
Please read MSDN which covers it in the C # link .
Basically a derived class inherits from another class, it gets all its methods, events and properties, and each type is polymorphic in .NET since they all have Object as their base class.
0
a source to share