Computer >> 컴퓨터 >  >> 프로그램 작성 >> C#

C# Linq Skip() 메서드

<시간/>

Skip() 메서드를 사용하여 요소를 건너뛰고 나머지 요소를 반환합니다.

다음은 배열입니다.

int[] marks = { 80, 55, 79, 99 };

이제 람다 표현식을 사용하여 2개의 요소를 건너뛰도록 하겠습니다. 하지만 이는 요소를 내림차순으로 정렬한 후 수행됩니다.

IEnumerable<int> selMarks = marks.AsQueryable().OrderByDescending(s => s).Skip(2);

예시

using System;
using System.Linq;
using System.Collections.Generic;
public class Demo {
   public static void Main() {
      int[] marks = { 80, 55, 79, 99 };
      IEnumerable<int> selMarks = marks.AsQueryable().OrderByDescending(s => s).Skip(2);
      Console.WriteLine("Skipped the result of 1st two students...");
      foreach (int res in selMarks) {
         console.WriteLine(res);
      }
   }
}