2019年3月1日

摘要: 1 using System; 2 class Person 3 { 4 public int age; 5 public string name; 6 public Person(int age, string name){ 7 this.age = age; 8 this.name = name; 9 } 10... 阅读全文

posted @ 2019-03-01 21:28 金色的省略号 阅读(198) 评论(0) 推荐(0) 编辑