Esempio n. 1
0
 public SortedArrayDictionary()
 {
     s = new SortedArrayTwo <Key, Value>();
 }
Esempio n. 2
0
 public SortedArrayDictionary(int capacity)
 {
     s = new SortedArrayTwo <Key, Value>(capacity);
 }