The source code to get the values in a SortedList is given below. The given program is compiled and executed successfully.
using System;
using System.Collections;
class SortedListEx
{
//Entry point of Program
static public void Main()
{
//Creation of SortedList object
SortedList list = new SortedList();
//Add elements to SortedList
list.Add(1, "India");
list.Add(5, "America");
list.Add(2, "Austrelia");
list.Add(3, "Africa");
list.Add(4, "Canada");
Console.WriteLine("List Elements are:");
foreach (string value in list.GetValueList())
{
Console.WriteLine("\t"+value);
}
}
}
Output:
List Elements are:
India
Austrelia
Africa
Canada
America
Press any key to continue . . .
Program:
The source code to get the values in a SortedList is given below. The given program is compiled and executed successfully.
Output: