Exemplo n.º 1
0
        static void Main(string[] args)
        {
            Person p2;

            p2 = new PersonWithLastName("james", "robson");
            p2.print();
        }
Exemplo n.º 2
0
 static void Main(string[] args)
 {
     Person p2;
     p2 = new PersonWithLastName( "james", "robson");
     p2.print();
 }