摘要: 1. 创建排序对象Employeeclass Employee { public Employee(string name, decimal salary) { this.Name = name; this.Salary = salary; } public string Name { get; set; } public decimal Salary { get; set; } public override string ToString() ... 阅读全文
posted @ 2014-02-10 16:16 Kim_Jin 阅读(225) 评论(0) 推荐(0)