Use the keys to obtain the values from a generic SortedList : Generic SortedList : Generic C# Examples


C# Examples » Generic » Generic SortedList »

 

Use the keys to obtain the values from a generic SortedList









    
using  System;    
using  System.Collections.Generic;    
    
class  MainClass  {    
    public  static  void  Main()  {    
        SortedList<string,  double>  sl  =  new  SortedList<string,  double>();    
              
        sl.Add("A",  7);    
        sl.Add("B",  5);    
        sl.Add("C",  4);    
        sl.Add("D",  9);    
  
        //  Get  a  collection  of  the  keys.    
        ICollection<string>  c  =  sl.Keys;    
    
            
        foreach(string  str  in  c)    
            Console.WriteLine("{0},  Salary:  {1:C}",  str,  sl[str]);    
    
        Console.WriteLine();    
    }    
}
    
   
  
   



Output

A, Salary: $7.00
B, Salary: $5.00
C, Salary: $4.00
D, Salary: $9.00


HTML code for linking to this page:

Follow Navioo On Twitter

C# Examples

 Navioo Generic
» Generic SortedList