如果要跳过数组中的许多元素,请使用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