Hi everyone how can i Initialize the dictionary in my workflow for suppose i have two input dailog boxes where i can enter the key and value so every time it will add to dictionary
Can any one help on this
Appreciated for helping
Thanks in advance
You can try this in your studio
HI @Carla_Munoz
you can do this way
Take assign activity and Initialize the dictionary
invoiceDictionary = New Dictionary(of string,string)
Take invoke method activity and pass like this
[image]
in the properties of invoke method you can pass like this
[image]
output : -
[image]
note : invoiceDictionary variable type is System.collections.generic.Dictionary(Of String, String)
In 3 sentence you can replace the number and text with your input dialogue boxes variables
@Venkata_Swami
postwick
(Paul Ostwick)
September 26, 2023, 5:36pm
4
Put New Dictionary(of string, object)
(or whatever datatypes you need) into the default value in the variables pane
system
(system)
Closed
September 29, 2023, 5:37pm
5
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.