Megosztás a következőn keresztül:


InsensitiveDictionary<TValue> Constructors

Definition

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.

Applies to