摘要: 运用Linq,将List 转换为 Dictionary即:List ToDictionary废话不说,看代码:示例代码:按照性别分类class Program { public class Student { public string Name { get; set; } public int Age { get; set; } public int Sex { get; set; } } static void Main(string[] args... 阅读全文
posted @ 2013-08-29 10:29 cnkker.com 阅读(1063) 评论(0) 推荐(0)