Can we add more than one key-value pair to dictionary using invoke method

Hey @mcashwin

You need to call the invoke method again or add it in a loop.

Else you can initialize the dictionary directly in an Assign statement,

dict_Data = New Dictionary(Of Integer, String) From {{ 1, "Test1" }, { 2, "Test1" }}

Thanks
#nK