C# Linq Last() 方法


使用 Linq Last() 方法从序列中获取最后一个元素。

下面是我们的数组。

int[] val = { 10, 20, 30, 40 };

现在,获取最后一个元素。

val.AsQueryable().Last();

示例

 实时演示

using System;
using System.Collections.Generic;
using System.Linq;
class Demo {
   static void Main() {
      int[] val = { 10, 20, 30, 40 };
      // getting last element
      int last_num = val.AsQueryable().Last();
      Console.WriteLine("Last element: "+last_num);
   }
}

输出

Last element: 40

更新于:2020 年 6 月 23 日

1K+ 浏览

开启您的职业生涯

通过完成课程获得认证

立即开始
广告