使用 C# 从数组中获取最后一个元素的程序


声明一个数组并添加元素。

int[] val = { 5, 8, 15, 25, 40, 55, 80, 100 };

现在,使用可查询的 Last() 方法获取最后一个元素。

val.AsQueryable().Last();

让我们看看完整的代码。

示例

 现场演示

using System;
using System.Collections.Generic;
using System.Linq;
class Demo {
   static void Main() {
      int[] val = { 5, 8, 15, 25, 40, 55, 80, 100 };
      int last_num = val.AsQueryable().Last();
      Console.WriteLine("Last element: "+last_num);
   }
}

输出

Last element: 100

更新时间:2020 年 6 月 22 日

4K+ 浏览量

开启你的 职业

通过完成课程获得认证

开始
广告