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

更新于:23-Jun-2020

2K+ 浏览量

开启你的 职业生涯

完成课程后获得认证

开始吧
广告
© . All rights reserved.