Unable to print dictionery

I’m trying to print the dictionary values. But it’s showing error. Could you please help me in this? Please check the attached workflow:Main.xaml (11.0 KB)

foreach(KeyValuePair<string, string> entry in myDictionary)
{
    // do something with entry.Value or entry.Key
}
1 Like