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


LINQ FirstOrDefault()用法及代码示例


在 LINQ 中, FirstOrDefault() 运算符用于返回列表/集合中的第一个元素。 FirstOrDefault() 运算符与 LINQ First() 运算符相同,唯一的区别是,如果列表不返回任何元素,则 LINQ FirstOrDefault 运算符方法将返回默认值。

FirstOrDefault 方法的语法

以下是 LINQ FirstOrDefault 运算符的语法,用于返回列表中的第一个元素,或者如果列表不返回任何元素。

int result = objList.FirstOrDefault();

根据上述语法,我们尝试使用 LINQ FirstOrDefault() 运算符从 "objList" 集合中获取第一个元素或默认元素。

LINQ FirstOrDefault() 运算符示例

以下是在方法语法中使用 LINQ FirstOrDefault() 运算符返回列表中的第一个元素或在列表不包含任何值的情况下的示例。

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 ListObj type of int and objVal type of int
            int[] ListObj = { 1, 2, 3, 4, 5 };
            int[] objVal = { };
/*FirstOrDefault() method is used to return the first element from the
    list and the list not contain any element will return the default value.*/
            int result = List.FirstOrDefault();
            int val = objVal.FirstOrDefault();
            Console.WriteLine("Element from the List1:{0}", result);
            Console.WriteLine("Element from the List2:{0}", val);
            Console.ReadLine();

        }

    }
}

在上面的示例中,我们有两个列表 "ListObj"、"objVal",我们尝试使用 LINQ FirstOrDefault() 方法从列表中获取第一个元素。

输出:

LINQ FirstOrDefault() Method

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

以下是在查询语法中使用 LINQ FirstOrDefault() 运算符返回列表中的第一个元素或在列表不包含任何值的情况下的示例。

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[] ListOb = { 1, 2, 3, 4, 5 };

            int[] ValOb = { };

            int result = (from l in ListOb select l).FirstOrDefault();

            int val = (from x in ValOb

                       select x).FirstOrDefault();

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

            Console.WriteLine("Element from the List2:{0}", val);

            Console.ReadLine();

        }

    }

    }

输出:

LINQ FirstOrDefault() Method



相关用法


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