本文概述
在LINQ中, FirstOrDefault()运算符用于返回列表/集合中的第一个元素。 FirstOrDefault()运算符与LINQ First()运算符相同, 唯一的区别是, 如果列表不返回任何元素, 则LINQ FirstOrDefault运算符方法将返回默认值。
FirstOrDefault方法的语法
这是LINQ FirstOrDefault运算符的语法, 用于从列表中返回第一个元素, 或者如果列表不返回任何元素, 则返回。
int result = objList.FirstOrDefault();
根据以上语法, 我们尝试使用LINQ FirstOrDefault()运算符从” objList”集合中获取First元素或默认元素。
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()运算符示例
这是在查询语法中使用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();
}
}
}
输出