📅  最后修改于: 2021-01-06 05:28:57             🧑  作者: Mango
在LINQ中,FirstOrDefault()运算符用于返回列表/集合中的第一个元素。 FirstOrDefault()运算符与LINQ First()运算符相同,唯一的区别是,如果列表不返回任何元素,则LINQ FirstOrDefault运算符方法将返回默认值。
这是LINQ FirstOrDefault运算符的语法,用于返回列表中的第一个元素,或者如果列表不返回任何元素的话。
int result = objList.FirstOrDefault();
根据以上语法,我们尝试使用LINQ FirstOrDefault()运算符从“ objList”集合中获取First元素或默认元素。
这是在方法语法中使用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()运算符的示例,以从列表中返回第一个元素,或者如果列表不包含任何值,则返回该示例。
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();
}
}
}
输出: