📜  LINQ第一个元素

📅  最后修改于: 2021-01-06 05:28:03             🧑  作者: Mango

LINQ First()元素

在LINQ中,First()方法/运算符用于根据指定条件从列表或集合中的项目序列中返回第一个元素,或者从列表中的项目序列中返回第一个元素。如果基于指定条件在列表/集合中不存在任何元素,则LINQ FIRST()方法将引发错误。

LINQ FIRST()方法的语法

从列表中获取第一个元素的第一种方法的语法为:

int result = objList.First();

根据以上语法,我们使用LINQ FIRST()方法从“ objList”集合中获取第一个元素。

LINQ FIRST()方法的示例

这是方法语法中的LINQ FIRST()运算符的示例,用于从集合中获取第一个元素。

C#代码

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 objList of the type of int
            int[] objList = { 1, 2, 3, 4, 5 };
//First() method is used to return the first element from the array 'objList'
            int result = objList.First();
            Console.WriteLine("Element from the List: {0}", result);
            Console.ReadLine();
        }
    }
}

在上面的示例中,我们尝试通过在方法语法中使用LINQ FIRST()运算符从“ objList”的集合中获取第一个元素。

输出:

方法语法中的LINQ FIRST()运算符的结果如下所示:

查询语法中的LINQ FIRST()运算符示例

这是方法语法中的LINQ FIRST()运算符的示例,用于从集合中获取第一个元素。

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)
        {



            int[] objList = { 1, 2, 3, 4, 5 };

            int result = (from l in objList select l).First();

            Console.WriteLine("Element from the List: {0}", result);

            Console.ReadLine();

        }

    }

    }

输出:

方法语法中的LINQ FIRST()运算符的结果如下所示: