InsensitiveDictionary<TValue> Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
InsensitiveDictionary<TValue>() |
Initializes a new instance of the InsensitiveDictionary<TValue> class. |
InsensitiveDictionary<TValue>(IDictionary<String,TValue>) |
Initializes a new instance of the InsensitiveDictionary<TValue> class. |
InsensitiveDictionary<TValue>(Int32) |
Initializes a new instance of the InsensitiveDictionary<TValue> class. |
InsensitiveDictionary<TValue>()
Initializes a new instance of the InsensitiveDictionary<TValue> class.
public InsensitiveDictionary ();
Public Sub New ()
Applies to
InsensitiveDictionary<TValue>(IDictionary<String,TValue>)
Initializes a new instance of the InsensitiveDictionary<TValue> class.
public InsensitiveDictionary (System.Collections.Generic.IDictionary<string,TValue> dictionary);
new Microsoft.Azure.Commands.ResourceManager.Cmdlets.Collections.InsensitiveDictionary<'Value> : System.Collections.Generic.IDictionary<string, 'Value> -> Microsoft.Azure.Commands.ResourceManager.Cmdlets.Collections.InsensitiveDictionary<'Value>
Public Sub New (dictionary As IDictionary(Of String, TValue))
Parameters
- dictionary
- IDictionary<String,TValue>
The dictionary.
Applies to
InsensitiveDictionary<TValue>(Int32)
Initializes a new instance of the InsensitiveDictionary<TValue> class.
public InsensitiveDictionary (int capacity);
new Microsoft.Azure.Commands.ResourceManager.Cmdlets.Collections.InsensitiveDictionary<'Value> : int -> Microsoft.Azure.Commands.ResourceManager.Cmdlets.Collections.InsensitiveDictionary<'Value>
Public Sub New (capacity As Integer)
Parameters
- capacity
- Int32
The initial number of elements that the Dictionary<TKey,TValue> can contain.