C# program to get the values in a SortedList (Example of GetValueList() Method)

C# SortedList.GetValueList() Method: Here, we are going to learn how to get the values in a SortedList in C#.Net?
Submitted by Nidhi, on April 26, 2021

The GetValueList() method of SortedList class is used to get the values from a SortedList.

Syntax:

    IList SortedList.GetValueList();

Parameter(s):

This does not accept any parameter.

Return value:

It returns a IList that contains all the values of a SortedList object.

Program:

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 . . .

C# SortedList Class Programs »


ADVERTISEMENT
ADVERTISEMENT


Comments and Discussions!




Languages: » C » C++ » C++ STL » Java » Data Structure » C#.Net » Android » Kotlin » SQL
Web Technologies: » PHP » Python » JavaScript » CSS » Ajax » Node.js » Web programming/HTML
Solved programs: » C » C++ » DS » Java » C#
Aptitude que. & ans.: » C » C++ » Java » DBMS
Interview que. & ans.: » C » Embedded C » Java » SEO » HR
CS Subjects: » CS Basics » O.S. » Networks » DBMS » Embedded Systems » Cloud Computing
» Machine learning » CS Organizations » Linux » DOS
More: » Articles » Puzzles » News/Updates

© https://www.includehelp.com some rights reserved.