2012年1月2日
摘要: 今天是2012年的第二天,今天要总结的内容是LINQ中查询变量和查询表达式的结构。查询变量:首先来看一段代码: 1 class Program 2 { 3 static void Main(string[] args) 4 { 5 int[] numbers = { 2,5,28,31,17,16,42}; 6 7 var numsQuery = from n in numbers //返回枚举数 8 where n < 20 9 ... 阅读全文
posted @ 2012-01-02 21:40 永远的麦子 阅读(1286) 评论(0) 推荐(0) 编辑