摘要: 1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 6 namespace 继承 7 { 8 #region 人类,父类。 9 class Person 10 { 11 private string name; 12 13 protected string Name 14 { 15 get { return name; } 16 ... 阅读全文
posted @ 2014-03-23 01:23 dlwcg 阅读(370) 评论(0) 推荐(0) 编辑