2

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

What is polymorphism?

Community
  • 1
  • 1
maztt
  • 12,278
  • 21
  • 78
  • 153
  • see also: http://stackoverflow.com/questions/234458/does-polymorphism-or-conditionals-promote-better-design http://stackoverflow.com/questions/933831/implementing-polymorphism-in-c-how-best-to-do-it http://stackoverflow.com/questions/2530893/is-this-an-example-of-polymorphism http://stackoverflow.com/questions/2400284/is-method-overloading-considered-part-of-polymorphism http://stackoverflow.com/questions/2423231/polymorphism-relates-inheritance http://stackoverflow.com/questions/367276/what-is-the-difference-between-abstraction-and-polymorphism – George Stocker Apr 27 '10 at 17:26

1 Answers1

0

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
  • 19,950
  • 4
  • 55
  • 71