示例#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();
 }