.NET-LINQ-C#-基础-示例-LINQ查询的三个部分
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了.NET-LINQ-C#-基础-示例-LINQ查询的三个部分相关的知识,希望对你有一定的参考价值。
Snippet to illustrate the three actions that happen in all LINQ query operations.
// The Three Parts of a LINQ Query: // 1. Data source. // 2. Query creation. // numQuery is an IEnumerable<int> var numQuery = from num in numbers where (num % 2) == 0 select num; // 3. Query execution. foreach (int num in numQuery) { Console.Write("{0,1} ", num); }
以上是关于.NET-LINQ-C#-基础-示例-LINQ查询的三个部分的主要内容,如果未能解决你的问题,请参考以下文章