Exemplo n.º 1
0
 public void Clear()
 {
     // Pronk
     internalDictionary = new ServerSplitOrderedList <TKey, KeyValuePair <TKey, TValue> >(comparer);
 }
Exemplo n.º 2
0
 public ServerConcurrentDictionary(IEqualityComparer <TKey> comparer)
 {
     this.comparer           = comparer;
     this.internalDictionary = new ServerSplitOrderedList <TKey, KeyValuePair <TKey, TValue> >(comparer);
 }