Add to dictinoary

hear am doing mail replay for a particular email id so that’s y I use this add to dictionary in this I get the error so share that screen shoot in that output error is there go and check-in that image.

Anyone Plz help

@Chethan_P - Before adding items to the dictionary it must be initialized.

MasterDictionary = new Dictionary(Of String, String) // use Assign activity
*if both your key and value are strings.

2 Likes

sorry i didn’t understand

@Chethan_P - Above for each row activity -
add Assign activity
To : MasterDictionary ( your dictionary name)
Value : new Dictionary(Of String, String)

2 Likes

thanks you very much, can u plz explain y i get that error and y we add that new dictionary(of string, string)

@Chethan_P - When you using any collection types variables - default variable value is Nothing. So it has to be initialized with the respective collection types. like below…
for dictionary - dictionaryVariable = new dictionary(of string, string) ( based on key/value types)
for List - listvariable = new List(of string) ( based on list types)

3 Likes

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.