当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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 values
            int[] a = { 1, 2, 3, 4, 5 };
/*With the help of ElementAt() method will fetch the element from
    the 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() Method



相关用法


注:本文由纯净天空筛选整理自 LINQ ElementAt() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。