Csharp/C Sharp by API/System.Collections.Generic/SortedDictionary

Материал из .Net Framework эксперт
Перейти к: навигация, поиск

SortedDictionary.Add

  

using System;  
using System.Collections.Generic;  
  
class MainClass {  
  public static void Main() {  
    SortedDictionary<string, double> dict = new SortedDictionary<string, double>();  
      
    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]);  
  }  
}


SortedDictionary.Keys

  

using System;  
using System.Collections.Generic;  
  
class MainClass {  
  public static void Main() {  
    SortedDictionary<string, double> dict = new SortedDictionary<string, double>();  
      
    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]);  
  }  
}