Q:

C# program to replace the value at a specific index in a SortedList object (Example of SetByIndex() Method)

belongs to collection: C# SortedList Class Programs

0

Syntax:

    void SortedList.SetByIndex(int index, object? value);

Parameter(s):

  • index: The index at which to set the value.
  • value: The value to set into the SortedList object, it can also be null.

Return value:

It does not return any value.

Exception(s):

  • System.ArgumentOutOfRangeException
  •  

All Answers

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

Program:

The source code to replace the value at a specific index 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, "Austrelia");
        list.Add(103, "Africa   ");
        list.Add(104, "Canada   ");

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

        list.SetByIndex(2, "DELHI");

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

Output:

Values before SetByIndex:
        India
        Austrelia
        Africa
        Canada
        America
Values after SetByIndex:
        India
        Austrelia
        DELHI
        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 copy SortedList elements to a one-di... >>
<< C# program to get the values in a SortedList objec...