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