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 高考祝福语 简短12字
15 新婚抖音祝福语简短
16 兔年祝福语简短100字
17 猪年元旦祝福语简短创意
18 岁岁祝福语简短独特