摘要:
原来还有这种写法,自己还记了笔记的.悲哀! 一直以来,我都是这样写的: 哎,悲哀! Union 和 Concat 不一样的地方是它要去重 阅读全文
摘要:
检查元素的数量,每个元素的值及两个集合中元素的顺序是否相等,3个方面都相等则为true,否则为false 阅读全文
摘要:
IList intList = new List() { 10, 21, 30, 45, 50, 87 }; var sum1 = intList.Sum(s => { if (s % 2 == 0) { return s; ... 阅读全文
摘要:
IList<Student> studentList = new List<Student>() { new Student() { StudentID = 1, StudentName = "John", StandardID =1 }, new Student() { StudentID = 2 阅读全文
摘要:
Contains Max 阅读全文
摘要:
示例一 示例二 阅读全文