Use the keys to obtain the values from a generic Dictionary : Dictionary : Data Structure C# Examples


C# Examples » Data Structure » Dictionary »

 

Use the keys to obtain the values from a generic Dictionary









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



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 Data Structure
» Dictionary