C# SortedList GetByIndex

Description

SortedList GetByIndex gets the value at the specified index of a SortedList object.

Syntax

SortedList.GetByIndex has the following syntax.


public virtual Object GetByIndex(
  int index
)

Parameters

SortedList.GetByIndex has the following parameters.

  • index - The zero-based index of the value to get.

Returns

SortedList.GetByIndex method returns The value at the specified index of the SortedList object.

Example


using System; /* w  w  w.j  av a 2 s.co  m*/
using System.Collections; 
 
class MainClass { 
  public static void Main() { 
    SortedList sl = new SortedList(); 
     
    sl.Add("a", "A"); 
    sl.Add("b", "B"); 
    sl.Add("c", "C"); 
    sl.Add("d", "D"); 

    // add by using the indexer. 
    sl["e"] = "E"; 
 
    // Get a collection of the keys. 
    ICollection c = sl.Keys; 
 
    // Display list using integer indexes. 
    Console.WriteLine("Contents by integer indexes."); 
    for(int i=0; i<sl.Count; i++) 
      Console.WriteLine(sl.GetByIndex(i)); 
      
  }
}

The code above generates the following result.





















Home »
  C# Tutorial »
    System.Collections »




ArrayList
BitArray
Comparer
Hashtable
Queue
SortedList
Stack