// 注意文件开头:
// using System.Linq;
int[] scores = new int[] { 97, 92, 81, 60 };
System.Collections.Generic.IEnumerable<int> scoreQuery =
from score in scores
where score > 80
select score;
string logStr = "";
foreach (int i in scoreQuery) {
logStr += (i + " ");
}
Debug.Log(logStr);
// Output: 97 92 81
相关文章
- 01-04LINQ to Entities 查询注意事项
- 01-04linq 总结
- 01-04Linq 中的 left join
- 01-04c# – 为静态,常量和只读字段分配内存?
- 01-04Linq生成操作之DefautIfEmpty,Empty,Range,Repeat源码分析
- 01-04Linq聚合操作之Aggregate,Count,Sum,Distinct源码分析
- 01-04Linq转换操作之ToArray,ToList,ToDictionary源码分析
- 01-04Linq转换操作之OfType,Cast,AsEnumerable,ToLookup源码分析
- 01-04Linq集合操作之Intersect,Except,Union源码分析
- 01-04SQL、LINQ、Lambda 三种用法(转)