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