C# 程序从序列中跳过元素,只要指定的条件为真
使用 SkipWhile() 方法从序列中跳过元素,只要指定的条件为真。
以下为数组 −
int[] marks = { 35, 42, 48, 88, 55, 90, 95, 85 };
此为条件。
s => s >= 50
只要上述条件为真,就会跳过大于 50 的元素,如下所示 −
示例
using System; using System.Linq; using System.Collections.Generic; public class Demo { public static void Main() { int[] marks = { 35, 42, 48, 88, 55, 90, 95, 85 }; // skips elements above 50 IEnumerable<int> selMarks = marks.AsQueryable().OrderByDescending(s => s).SkipWhile(s => s >= 50); // displays rest of the elements Console.WriteLine("Skipped marks > 60..."); foreach (int res in selMarks) { Console.WriteLine(res); } } }
输出
Skipped marks > 60... 48 42 35
广告