跳過方法
從序列中的第一個元素開始跳過元素到指定位置。
簽名:
Public static IEnumerable Skip(this IEnumerable source,int count);
例
int[] numbers = { 1, 5, 8, 4, 9, 3, 6, 7, 2, 0 };
var SkipFirstFiveElement = numbers.Take(5);
輸出: 結果為 3,6,7,2 和 0 獲取元素。
從序列中的第一個元素開始跳過元素到指定位置。
Public static IEnumerable Skip(this IEnumerable source,int count);
int[] numbers = { 1, 5, 8, 4, 9, 3, 6, 7, 2, 0 };
var SkipFirstFiveElement = numbers.Take(5);
輸出: 結果為 3,6,7,2 和 0 獲取元素。