更新:2007 年 11 月
此示例演示如何以返回值和输出参数的形式从方法中返回查询。
任何查询的类型都必须为
有关如何执行传递到方法的查询的示例,请参见
示例
在下面的示例中,第一个方法以返回值的形式返回查询,第二个方法以输出参数的形式返回查询。请注意,在这两种情况下,返回的都是查询,而不是查询结果。
C# | 复制代码 |
---|---|
class MQ { IEnumerable<string> QueryMethod1(ref int[] ints) { var intsToStrings = from i in ints where i > 4 select i.ToString(); return intsToStrings; } static void Main() { MQ app = new MQ(); int[] nums = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 }; var myQuery = app.QueryMethod1(ref nums); //execute myQuery foreach (string s in myQuery) { Console.WriteLine(s); } //modify myQuery myQuery = (from str in myQuery orderby str descending select str). Take(3); // Executing myQuery after more // composition Console.WriteLine("After modification:"); foreach (string s in myQuery) { Console.WriteLine(s); } // Keep console window open in debug mode. Console.WriteLine("Press any key to exit."); Console.ReadKey(); } } |
编译代码
创建面向 .NET Framework 3.5 版的 Visual Studio 项目。默认情况下,该项目具有一个对 System.Core.dll 的引用以及一条针对 System.Linq 命名空间的 using 指令。
将代码复制到项目中。
按 F5 编译并运行程序。
按任意键退出控制台窗口。