Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

Dictionary<TKey, TValue> Constructor

 

Initializes a new instance of the Dictionary<TKey, TValue> class.

Namespace:   System.Collections.Generic
Assembly:  mscorlib (in mscorlib.dll)

NameDescription
System_CAPS_pubmethodDictionary<TKey, TValue>()

Initializes a new instance of the Dictionary<TKey, TValue> class that is empty, has the default initial capacity, and uses the default equality comparer for the key type.

System_CAPS_pubmethodDictionary<TKey, TValue>(IDictionary<TKey, TValue>^)

Initializes a new instance of the Dictionary<TKey, TValue> class that contains elements copied from the specified IDictionary<TKey, TValue> and uses the default equality comparer for the key type.

System_CAPS_pubmethodDictionary<TKey, TValue>(IDictionary<TKey, TValue>^, IEqualityComparer<TKey>^)

Initializes a new instance of the Dictionary<TKey, TValue> class that contains elements copied from the specified IDictionary<TKey, TValue> and uses the specified IEqualityComparer<T>.

System_CAPS_pubmethodDictionary<TKey, TValue>(IEqualityComparer<TKey>^)

Initializes a new instance of the Dictionary<TKey, TValue> class that is empty, has the default initial capacity, and uses the specified IEqualityComparer<T>.

System_CAPS_pubmethodDictionary<TKey, TValue>(Int32)

Initializes a new instance of the Dictionary<TKey, TValue> class that is empty, has the specified initial capacity, and uses the default equality comparer for the key type.

System_CAPS_pubmethodDictionary<TKey, TValue>(Int32, IEqualityComparer<TKey>^)

Initializes a new instance of the Dictionary<TKey, TValue> class that is empty, has the specified initial capacity, and uses the specified IEqualityComparer<T>.

System_CAPS_protmethodDictionary<TKey, TValue>(SerializationInfo^, StreamingContext)

Initializes a new instance of the Dictionary<TKey, TValue> class with serialized data.

Return to top
Show: