摘要:
//影院座位信息 [Serializable] //可序列化 public class Seat { public string SeatNum { get; set; } //座位号 public System.Drawing.Color Color { get; set; } public Se 阅读全文
摘要:
首先先创建员工类(SE)和项目经理类(PM) 在员工类里面封装属性 代码: //工号 public string ID { get; set; } //姓名 public string Name { get; set; } //年龄 public int Age { get; set; } //性别 阅读全文