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

ข้ามวิธีการใน C #


ใช้เมธอด Skip() ใน C# เพื่อข้ามจำนวนองค์ประกอบในอาร์เรย์

สมมติว่าต่อไปนี้คืออาร์เรย์ของเรา –

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