C#程序跳过数组中的初始元素
如果要跳过数组中的许多元素,请使用Skip()C#中的方法。
假设以下是我们的数组-
int[] arr = { 24, 40, 55, 62, 70, 82, 89, 93, 98 };现在跳过前四个元素-
var ele = arr.Skip(4);
让我们看完整的例子-
示例
using System.IO;
using System;
using System.Linq;
public class Demo {
public static void Main() {
int[] arr = { 24, 40, 55, 62, 70, 82, 89, 93, 98 };
Console.WriteLine("Initial Array...");
foreach (var res in arr) {
Console.WriteLine(res);
}
//跳过前四个元素
var ele = arr.Skip(4);
Console.WriteLine("New Array after skipping elements...");
foreach (var res in ele) {
Console.WriteLine(res);
}
}
}输出结果
Initial Array... 24 40 55 62 70 82 89 93 98 New Array after skipping elements... 70 82 89 93 98
热门推荐
10 情人喝酒祝福语简短的话
11 新婚过年祝福语大全简短
12 虎年开新车祝福语简短
13 孙女结婚姥姥祝福语简短
14 怀念青春祝福语简短
15 提早庆祝生日祝福语简短
16 元旦联谊祝福语简短精辟
17 简短长辈新年祝福语
18 婆婆生日祝福语短语简短