声明一个数组并添加元素。
int[] val = { 5, 8, 15, 25, 40, 55, 80, 100 };
现在,使用QueryableLast()方法获取最后一个元素。
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
Copyright © 广州京杭网络科技有限公司 2005-2025 版权所有 粤ICP备16019765号
广州京杭网络科技有限公司 版权所有