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 | |
---|---|---|
AddToDictionary<TKey, TValue>() | Initializes a new instance of the AddToDictionary<TKey, TValue> class. |
|
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
dictionary
Type: System.Activities.InArgument<IDictionary<TKey, TValue>>The target dictionary.
key
Type: System.Activities.InArgument<TKey>The key to be added.
value
Type: System.Activities.InArgument<TValue>The value to be added.
Return to top