LINQ 中的 last() 方法用于返回列表/集合中的最后一个元素。如果列表/集合没有返回元素,LINQ Last() 方法将抛出异常。
LINQ Last() 方法的语法
int result = objList.Last();
根据上述语法,我们尝试使用 LINQ Last() 方法从 "objList" 中获取最后一个元素。
方法语法中的 LINQ Last() 示例
这是方法语法中的 LINQ Last() 运算符的示例,用于从列表中获取最后一个元素。
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 of type int store the value 1 to 5
int[] ListObj = { 1, 2, 3, 4, 5 };
/*apply the Last() method to fetch the last element
of the list and store in result variable of type int*/
int result = ListObj.Last();
//Console.Writeline() used to print the value of the Last() method
Console.WriteLine("Element from the List:{0}", result);
Console.ReadLine();
}
}
}
从上面的代码中,我们使用 LINQ Last() 方法从 "ListObj" 列表中获取最后一个元素。
输出:
查询语法中的 LINQ Last() 运算符示例
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 of type int store the value 1 to 5
int[] ListObj = { 1, 2, 3, 4, 5 };
//apply query syntax to fetch the last value from the list
int result = (from l in ListObj select l).Last();
Console.WriteLine("Element from the List:{0}", result);
Console.ReadLine();
}
}
}
输出:
相关用法
- LINQ LastOrDefault()用法及代码示例
- 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 Last() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。