C#에서 Skip() 메서드를 사용하여 배열의 요소 수를 건너뜁니다.
다음이 우리의 배열이라고 가정해 봅시다 -
int[] arr = { 10, 20, 30, 40, 50 };
처음 두 요소를 건너뛰려면 Skip() 메서드를 사용하고 인수를 2 −
로 추가합니다.arr.Skip(2);
예를 들어 보겠습니다 -
예시
using System.IO; using System; using System.Linq; public class Demo { public static void Main() { int[] arr = { 10, 20, 30, 40, 50 }; Console.WriteLine("Initial Array..."); foreach (var res in arr) { Console.WriteLine(res); } // skipping first two elements var ele = arr.Skip(2); Console.WriteLine("New Array after skipping elements..."); foreach (var res in ele) { Console.WriteLine(res); } } }
출력
Initial Array... 10 20 30 40 50 New Array after skipping elements... 30 40 50