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
廣告
資料結構
網路
RDBMS
作業系統
Java
iOS
HTML
CSS
Android
Python
C 程式設計
C++
C#
MongoDB
MySQL
Javascript
PHP