 | Polymorphism Sample |
| namespace Arindam
| | {
| | public class EtgDeclaration
| | {
| | public virtual void Country()
| | {
| | Console.WriteLine("Here is my country name");
| | }
| | }
| |
| | public class EtgPolymorphism : EtgDeclaration
| | {
| |
| | public override void Out()
| | {
| | Console.WriteLine("India, A great country");
| | }
| |
| | }
| | }
| |
|