时间:2021-05-20
本文实例讲述了C#使用linq查询大数据集的方法。分享给大家供大家参考。具体如下:
using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace LargeNumberQuery{ class Program { static void Main(string[] args) { int[] numbers = CreateNumbers(7384738); Console.WriteLine("Numbers less than 2000:"); var queryResults = from n in numbers where n < 2000 select n; foreach (var item in queryResults) { Console.WriteLine(item); } Console.ReadLine(); } private static int[] CreateNumbers(int count) { Random generator = new Random(0); int[] result = new int[count]; for (int i = 0; i < count; i++) { result[i] = generator.Next(); } return result; } }}希望本文所述对大家的C#程序设计有所帮助。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
本文实例讲述了C#使用linq语句查询数组中以特定字符开头元素的方法。分享给大家供大家参考。具体如下:下面的代码查询数组中以字母k开头的元素usingSyste
前言java8里最大亮点是lambda,让我们用习惯C#linq的语法,也能眼前一亮。但是比起C#的语法糖还是差的很远。差集、并集、交集@Testpublicv
本文实例讲述了C#使用linq对数组进行筛选排序的方法。分享给大家供大家参考。具体如下:usingSystem;usingSystem.Collections.
本文实例讲述了C#处理MySql多个返回集的方法。分享给大家供大家参考。具体方法如下:关于Mysql返回多个集java和Php的较多,但是C#的完整代码好像没见
下面介绍C#的集合类1ArrayListusingSystem;usingSystem.Collections.Generic;usingSystem.Linq