Esempio n. 1
0
 protected XDictionary(SerializationInfo info, StreamingContext context)
 {
     _base = new InternalDictionary <TKey, TValue>(info, context);
 }
Esempio n. 2
0
 public XDictionary(IDictionary <TKey, TValue> dictionary)
 {
     _base = new InternalDictionary <TKey, TValue>(dictionary);
 }
Esempio n. 3
0
 public XDictionary(int capacity)
 {
     _base = new InternalDictionary <TKey, TValue>(capacity);
 }
Esempio n. 4
0
 public XDictionary(IEqualityComparer <TKey> comparer)
 {
     _base = new InternalDictionary <TKey, TValue>(comparer);
 }
Esempio n. 5
0
 public XDictionary()
 {
     _base = new InternalDictionary <TKey, TValue>();
 }