本文概述
- LINQ到int数组的语法
- LINQ to int Array的示例
LINQ到int数组的语法 【LINQ转Int数组】在整数数组上编写LINQ查询以从数组集合中获取所需元素的语法。
IEnumerable<
int>
result = from a in numarr1select a;
在上面的语法中, 我们编写了LINQ查询以从” 数字” 整数数组中获取数据。
LINQ to int Array的示例 这是LINQ to int Array从序列中获取元素的示例, 其中元素的值大于10且小于200。
using System;
using System. Collections;
using System.Collections.Generic;
using System. Linq;
using System. Text;
using System.Threading.Tasks;
namespace ConsoleApp1{class Programme2{static void Main(string[] args){//create an array numarray of type intint[] numarray = { 1, 6, 9, 10, 50, 60, 100, 200, 300 };
/*write LINQ query to get hte data from the numarray where the value is greater than 10 and less than 200*/IEnumerable<
int>
result = from a in numarraywhere a >
10 &
&
a <
200select a;
foreach (int item in result){Console.WriteLine(item);
}Console.ReadLine();
}}}
在上面的代码中, 我们对” numarray” 整数数组使用了LINQ查询, 以获取其值大于10且小于200的元素。
输出
文章图片
推荐阅读
- LINQ到列表/集合
- LINQ转字符串数组
- LINQ对象
- LINQ转字符串
- LINQ empty方法
- LINQ repeat方法
- LINQ range方法
- LINQ生成操作
- LINQ Concat方法