    class DerivedClass : BaseClass 
    {
       public override string show()
       {
           return "We are in DerivedClass";
       }
       public new string  display()
       {
           string t;
           t = base.display();
           return "We are in DerivedClass display." + t;
       }
    }
