Computer >> Máy Tính >  >> Lập trình >> C#

Lấy hoặc đặt phần tử tại chỉ mục được chỉ định trong Bộ sưu tập trong C #

Để lấy hoặc đặt phần tử tại chỉ mục được chỉ định trong Bộ sưu tập, mã như sau -

Ví dụ

using System;
using System.Collections.ObjectModel;
public class Demo {
   public static void Main() {
      Collection<string> col = new Collection<string>();
      col.Add("Laptop");
      col.Add("Desktop");
      col.Add("Notebook");
      col.Add("Ultrabook");
      col.Add("Tablet");
      col.Add("Headphone");
      col.Add("Speaker");
      Console.WriteLine("Elements in Collection...");
      foreach(string str in col) {
         Console.WriteLine(str);
      }
      Console.WriteLine("Element at index 3 = " + col[3]);
      Console.WriteLine("Element at index 4 = " + col[4]);
   }
}

Đầu ra

Điều này sẽ tạo ra kết quả sau -

Elements in Collection...
Laptop
Desktop
Notebook
Ultrabook
Tablet
Headphone
Speaker
Element at index 3 = Ultrabook
Element at index 4 = Tablet

Ví dụ

Hãy để chúng tôi xem một ví dụ khác -

using System;
using System.Collections.ObjectModel;
public class Demo {
   public static void Main() {
      Collection<string> col = new Collection<string>();
      col.Add("Laptop");
      col.Add("Desktop");
      col.Add("Notebook");
      col.Add("Ultrabook");
      col.Add("Tablet");
      col.Add("Headphone");
      col.Add("Speaker");
      Console.WriteLine("Elements in Collection...");
      foreach(string str in col) {
         Console.WriteLine(str);
      }
      Console.WriteLine("Element at index 3 = " + col[3]);
      col[3] = "SSD";
      Console.WriteLine("Element at index 3 (Updated) = " + col[3]);
   }
}

Đầu ra

Điều này sẽ tạo ra kết quả sau -

Elements in Collection...
Laptop
Desktop
Notebook
Ultrabook
Tablet
Headphone
Speaker
Element at index 3 = Ultrabook
Element at index 3 (Updated) = SSD