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

รับช่วงขององค์ประกอบในรายการ C#


ใช้วิธี GetRange() เพื่อรับช่วงขององค์ประกอบ -

ขั้นแรก กำหนดรายการและเพิ่มองค์ประกอบ -

List<int> arr1 = new List<int>();
arr1.Add(10);
arr1.Add(20);
arr1.Add(30);
arr1.Add(40);
arr1.Add(50);

ตอนนี้ ภายใต้รายการใหม่ รับช่วงขององค์ประกอบระหว่างดัชนี 1 ถึง 3 -

List<int> myList = arr1.GetRange(1, 3);

นี่คือรหัสที่สมบูรณ์ -

ตัวอย่าง

using System;
using System.Collections.Generic;
public class Demo {
   public static void Main() {
      List<int> arr1 = new List<int>();
      arr1.Add(10);
      arr1.Add(20);
      arr1.Add(30);
      arr1.Add(40);
      arr1.Add(50);
      Console.WriteLine("Initial List ...");
      foreach (int i in arr1) {
         Console.WriteLine(i);
      }
      Console.WriteLine("Getting elements between a range...");
      List<int> myList = arr1.GetRange(1, 3);
      foreach (int res in myList) {
         Console.WriteLine(res);
      }
   }
}

ผลลัพธ์

Initial List ...
10
20
30
40
50
Getting elements between a range...
20
30
40