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