Page Stats
Visitor: 592
C#.Net Polymorphism
Polymorphism means one name many forms. With polymorphism, the same method or property can perform different actions.
        There are two types of polymorphism:
        1. Static or compile time polymorphism: When the information is known to the compiler at compile time is known as compile time polymorphism.
        2. Dynamic or runtime polymorphism: When the information is not known to the compiler at compile time is known as run time polymorphism.