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

รับค่าที่ดัชนีที่ระบุของวัตถุ SortedList ใน C #


ในการรับค่าที่ดัชนีที่ระบุของวัตถุ SortedList รหัสจะเป็นดังนี้ -

ตัวอย่าง

using System;
using System.Collections;
public class Demo {
   public static void Main(String[] args) {
      SortedList list = new SortedList();
      list.Add("A", "Jacob");
      list.Add("B", "Sam");
      list.Add("C", "Tom");
      list.Add("D", "John");
      list.Add("E", "Tim");
      list.Add("F", "Mark");
      list.Add("G", "Gary");
      Console.WriteLine("Value at index 2 = "+list.GetByIndex(2));
      Console.WriteLine("Value at index 5 = "+list.GetByIndex(5));
      Console.WriteLine("Value at index 6 = "+list.GetByIndex(6));
   }
}

ผลลัพธ์

สิ่งนี้จะสร้างผลลัพธ์ต่อไปนี้ -

Value at index 2 = Tom
Value at index 5 = Mark
Value at index 6 = Gary

ตัวอย่าง

เรามาดูตัวอย่างกัน −

using System;
using System.Collections;
public class Demo {
   public static void Main(String[] args) {
      SortedList list = new SortedList();
      list.Add(1, "One");
      list.Add(2, "Two");
      list.Add(3, "Three");
      list.Add(4, "Four");
      list.Add(5, "Five");
      Console.WriteLine("Value at index 0 = "+list.GetByIndex(0));
   }
}

ผลลัพธ์

สิ่งนี้จะสร้างผลลัพธ์ต่อไปนี้ -

Value at index 0 = One