Dictionary Package name of Latest Studio Version

Hi Forum Member,

I am not able to find dictionary activities in latest version of Studio, Could you tell me the package name to get dictionary activities. I think Microsoft.Activities.Extension package was deprecated.

Hi @Shankar_MasRobo

Check below thread

Regards,

@Shankar_MasRobo

It has been removed

You can perform all those activities directly using assign

Initialize
Dict = New Dictionary(Of String,String)

Add/update item

dict("Key") = "Value"

Depending in the type of dictionary you can change…I have shown it for string key and value type

Cheers

You don’t need the dictionary activities. As Anil mentioned you can do things in assigns, and for things that don’t return a value you use Invoke Method (ie to remove a key, etc) or for more complex multi-step operations you could use Invoke Code.

Here are all the methods of a dictionary: