Share via


AddToDictionary<TKey, TValue> Constructor

 

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

Namespace:   Microsoft.Activities
Assembly:  Microsoft.Activities (in Microsoft.Activities.dll)

Overload List

Name Description
System_CAPS_pubmethod AddToDictionary<TKey, TValue>()

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

System_CAPS_pubmethod AddToDictionary<TKey, TValue>(InArgument<IDictionary<TKey, TValue>>, InArgument<TKey>, InArgument<TValue>)

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

See Also

AddToDictionary<TKey, TValue> Class
Microsoft.Activities Namespace

Return to top

AddToDictionary<TKey, TValue> Constructor ()

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

Syntax

public AddToDictionary()
public:
AddToDictionary()
new : unit -> AddToDictionary
Public Sub New

Return to top

AddToDictionary<TKey, TValue> Constructor (InArgument<IDictionary<TKey, TValue>>, InArgument<TKey>, InArgument<TValue>)

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

Syntax

public AddToDictionary(
    InArgument<IDictionary<TKey, TValue>> dictionary,
    InArgument<TKey> key,
    InArgument<TValue> value
)
public:
AddToDictionary(
    InArgument<IDictionary<TKey, TValue>^>^ dictionary,
    InArgument<TKey>^ key,
    InArgument<TValue>^ value
)
new : 
        dictionary:InArgument<IDictionary<'TKey, 'TValue>> *
        key:InArgument<'TKey> *
        value:InArgument<'TValue> -> AddToDictionary
Public Sub New (
    dictionary As InArgument(Of IDictionary(Of TKey, TValue)),
    key As InArgument(Of TKey),
    value As InArgument(Of TValue)
)

Parameters

Return to top