Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> C#

โปรแกรม C# ข้ามองค์ประกอบจำนวนที่กำหนดของอาร์เรย์


ต่อไปนี้เป็นอาร์เรย์ของเรา -

int[] points = { 210, 250, 300, 350, 420};

ใช้วิธี skip() เพื่อข้ามองค์ประกอบ เพิ่มตัวเลขเป็นอาร์กิวเมนต์ที่แสดงจำนวนองค์ประกอบที่จะส่งคืน

IEnumerable<int> skipEle = points.AsQueryable().OrderByDescending(s => s).Skip(3);

ตัวอย่าง

using System;
using System.Linq;
using System.Collections.Generic;
public class Demo {
   public static void Main() {
      int[] points = { 210, 250, 300, 350, 420};
      Console.WriteLine("Initial array...");
   
      foreach (int res in points)
      Console.WriteLine(res);
      IEnumerable<int> skipEle = points.AsQueryable().OrderByDescending(s => s).Skip(3);
      Console.WriteLine("Skipped 3 elements...");

      foreach (int res in skipEle)
      Console.WriteLine(res);
   }
}

ผลลัพธ์

Initial array...
210
250
300
350
420
Skipped 3 elements...
250
210