发布:2022/6/23 15:41:33作者:管理员 来源:本站 浏览次数:2308
声明一个数组并添加元素。
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 2014 - 2024 柏港建站平台 ejk5.com. 渝ICP备16000791号-4