Q:

C# program to get the values in a SortedList object (Example of Values Property)

belongs to collection: C# SortedList Class Programs

0

Syntax:

    ICollection SortedList.Values

Return value:

It returns the stored values, we can access values one by one using the for each loop.

 

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Program:

The source code to get the values in a SortedList object 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(101, "India    ");
        list.Add(105, "America  ");
        list.Add(102, "Australia");
        list.Add(103, "Africa   ");
        list.Add(104, "Canada   ");

        Console.WriteLine("Values are:");
        foreach (string value in list.Values)
        {
            Console.WriteLine("\t"+value);
        }
    }
}

Output:

Values are:
        India
        Australia
        Africa
        Canada
        America
Press any key to continue . . .

 

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

C# SortedList Class Programs

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
C# program to replace the value at a specific inde... >>
<< C# program to get the keys in a SortedList object ...