在LINQ中,LastOrDfeault()方法/运算符用于返回列表/集合中的最后一个元素,与LINQ Last()方法相同,唯一的区别是列表中没有元素时返回默认值/收藏。
LINQ LastOrDefault() 方法的语法
下面是使用 LINQ LastOrDefault() 方法从列表或默认值中获取最后一个元素的语法。如果列表使用 LINQ LastOrDefault() 方法不返回任何元素。
int result = ListObj.LastOrDefault();
根据上述语法,我们尝试使用 LINQ LastOrDefault() 方法从 "LastObj" 列表中获取最后一个元素。
方法语法中的 LINQ LastOrDefault() 运算符示例
下面是在方法语法中使用 LINQ LastOrDefault() 运算符从列表中获取最后一个元素的示例。
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 having the values from 1 to 5
int[] LISTOBJ = { 1, 2, 3, 4, 5 };
//Create another array ValObj having no values
int[] ValObj = { };
/*LastOrDefault() method will fetch the last element
from the LISTOBJ and store the output in the variable result*/
int result = LISTOBJ.LastOrDefault();
/*Here LastOrDefault() method is applied on
the ValObj array and return the result in the variable val*/
int val = ValObj.LastOrDefault();
Console.WriteLine("Element from the List1:{0}", result);
Console.WriteLine("Element from the List2:{0}", val);
Console.ReadLine();
}
}
}
从上面的代码中,我们使用 LINQ LastOrDefault() 方法从 "LISTOBJ" 和 "ValObj" 列表中获取最后一个元素。
输出:
查询语法中的 LINQ LastOrDefault()operator 示例
下面是在查询语法中使用 LINQ LastOrDefault() 运算符从列表中获取最后一个元素的示例。
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[] LISTOBJ = { 1, 2, 3, 4, 5 };
int[] ValObj = { };
int result = (from l in LISTOBJ select l).LastOrDefault();
int val = (from x in ValObj select x).LastOrDefault();
Console.WriteLine("Element from the List1:{0}", result);
Console.WriteLine("Element from the List2:{0}", val);
Console.ReadLine();
}
}
}
输出:
相关用法
- LINQ Last()用法及代码示例
- LINQ AsEnumrable()用法及代码示例
- LINQ ToLookup()用法及代码示例
- LINQ ElementAtOrDefault()用法及代码示例
- LINQ Count()用法及代码示例
- LINQ Single()用法及代码示例
- LINQ sum()用法及代码示例
- LINQ ToArray()用法及代码示例
- LINQ Min()用法及代码示例
- LINQ ToDictionary()用法及代码示例
- LINQ FirstOrDefault()用法及代码示例
- LINQ GroupBy()用法及代码示例
- LINQ Cast()用法及代码示例
- LINQ ToList()用法及代码示例
- LINQ Max()用法及代码示例
- LINQ Aggregate()用法及代码示例
- LINQ DefaultfEmpty()用法及代码示例
- LINQ ElementAt()用法及代码示例
- LINQ OfType()用法及代码示例
- Lodash _.sampleSize()用法及代码示例
注:本文由纯净天空筛选整理自 LINQ LastOrDefault() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。