예제 #1
0
파일: test.cs 프로젝트: hamoungh/cpp-labs
        static void Main(string[] args)
        {
            Person p2;

            p2 = new PersonWithLastName("james", "robson");
            p2.print();
        }
예제 #2
0
파일: test.cs 프로젝트: hamoungh/cpp-labs
 static void Main(string[] args)
 {
     Person p2;
     p2 = new PersonWithLastName( "james", "robson");
     p2.print();
 }