C# Linq SkipLast 方法
从末尾跳过元素,然后使用 SkipLast() 方法返回其余元素。
下面是一个数组。
int[] marks = { 45, 88, 50, 90, 95, 85 };现在,让我们使用 SkipLast() 和 Lambda 表达式跳过末尾的两个元素,但在对元素进行降序排列之后执行该操作。
IEnumerable<int> selMarks = marks.AsQueryable().OrderByDescending(s => s).SkipLast(2);
示例
using System;
using System.Linq;
using System.Collections.Generic;
public class Demo {
public static void Main() {
int[] marks = { 45, 88, 50, 90, 95, 85 };
IEnumerable<int> selMarks = marks.AsQueryable().OrderByDescending(s => s).SkipLast(2);
Console.WriteLine("Skipped the marks of last two students...");
foreach (int res in selMarks)
Console.WriteLine(res);
}
}输出
Skipped the marks of last two students... 95 90 88 85
广告
数据结构
网络
RDBMS
操作系统
Java
iOS
HTML
CSS
Android
Python
C 编程
C++
C#
MongoDB
MySQL
Javascript
PHP