Share via


ArraySettingItem Constructors

Definition

Overloads

ArraySettingItem()

Initializes a new instance of the ArraySettingItem class.

ArraySettingItem(IDictionary<String,Object>)

Initializes a new instance of the ArraySettingItem class that contains elements copied from the specified IDictionary<TKey,TValue>.

ArraySettingItem()

Initializes a new instance of the ArraySettingItem class.

public ArraySettingItem ();
Public Sub New ()

Applies to

ArraySettingItem(IDictionary<String,Object>)

Initializes a new instance of the ArraySettingItem class that contains elements copied from the specified IDictionary<TKey,TValue>.

public ArraySettingItem (System.Collections.Generic.IDictionary<string,object> dictionary);
new Microsoft.VisualStudio.Extensibility.Settings.ArraySettingItem : System.Collections.Generic.IDictionary<string, obj> -> Microsoft.VisualStudio.Extensibility.Settings.ArraySettingItem
Public Sub New (dictionary As IDictionary(Of String, Object))

Parameters

dictionary
IDictionary<String,Object>

The IDictionary<TKey,TValue> whose elements are copied to the new ArraySettingItem.

Applies to