C# 高级编程(笔记5)
摘要:
第11章 LINQ1. LINQ查询表达式必须以from子句开头,以select或group子名结束。在这两个子句之间,可以使用where、orderby、join、left和其他from子句2.Where语句原型 public static IEnumerable<Tsource> Where<Tsource>(this IEnumerable<Tsource> source, Func<Tsource, bool> predicate) { foreach (Tsource item in source) if (predicate(item 阅读全文
posted @ 2013-03-23 22:09 Gcam 阅读(191) 评论(0) 推荐(0) 编辑