A PHP Error was encountered

Severity: 8192

Message: str_replace(): Passing null to parameter #3 ($subject) of type array|string is deprecated

Filename: libraries/Filtered_db.php

Line Number: 23

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

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

0

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.

 

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

 

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

total answers (1)

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now