Dictionary<TKey, TValue> Constructor

Microsoft Silverlight will reach end of support after October 2021. Learn more.

Include Protected Members
Include Inherited Members

Include Silverlight Members
Include Silverlight for Windows Phone Members
Include XNA Framework Members

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

This member is overloaded. For complete information about this member, including syntax, usage, and examples, click a name in the overload list.

Overload List

  Name Description
Public methodSupported by Silverlight for Windows PhoneSupported by Xbox 360 Dictionary<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.
Public methodSupported by Silverlight for Windows PhoneSupported by Xbox 360 Dictionary<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.
Public methodSupported by Silverlight for Windows PhoneSupported by Xbox 360 Dictionary<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>.
Public methodSupported by Silverlight for Windows PhoneSupported by Xbox 360 Dictionary<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.
Public methodSupported by Silverlight for Windows PhoneSupported by Xbox 360 Dictionary<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>.
Public methodSupported by Silverlight for Windows PhoneSupported by Xbox 360 Dictionary<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>.

Top