本文概述
- LINQ ElementAt()方法的语法
- LINQ ElementAt()方法的示例
通常, 在列表中, 索引将从零开始, 因此, 如果要获取第一个元素, 则需要发送零(0)作为索引位置。
LINQ ElementAt()方法的语法
int result = objList.ElementAt(1);
在上面的语法中, 我们将元素从集合中的第二个索引位置元素处获取。
LINQ ElementAt()方法的示例 这是使用LINQ ElementAt()方法在指定索引位置获取元素的示例。
using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApp1{class Program1{static void Main(string[] args){//create an array named 'a' type int with assigning valuesint[] a = { 1, 2, 3, 4, 5 };
/*With the help of ElementAt() method will fetch the element fromthe specified position and store the value in 'result' and 'val' variable.*/int result = a.ElementAt(1);
int val = a.ElementAt(3);
/*WriteLine function will print the value of the specified index*/Console.WriteLine("Element At Index 1: {0}", result);
Console.WriteLine("Element At Index 3: {0}", val);
Console.ReadLine();
}}}
从上面的示例中, 我们试图基于不同的索引位置获取集合中的不同元素。
【LINQ ElementAt()方法】输出
文章图片
推荐阅读
- LINQ ElementAtOrDefault()方法
- LINQ LastOrDefault()方法
- LINQ FirstOrDefault()方法
- LINQ Last()方法
- LINQ First()元素
- LINQ元素运算符
- LINQ ToDictionary()方法
- LINQ AsEnumrable()方法
- LINQ OfType()方法