 | Polymorphism Sample |
| namespace Arindam
| | 1:{
| | 2: public class EtgDeclaration
| | 3: {
| | 4: public virtual void Country()
| | 5: {
| | 6: Console.WriteLine("Here is my country name");
| | 7: }
| | 8: }
| | 9:
| | 10: public class EtgPolymorphism : EtgDeclaration
| | 11: {
| | 12:
| | 13: public override void Out()
| | 14: {
| | 15: Console.WriteLine("India, A great country");
| | 16: }
| | 17:
| | 18: }
| | 19:}
| | 20: |
|