Dictionary where values are a list

I had difficulty with Add to a dictionary activity for a dictionary defined Dictionary(Of String, List(Of String))() - my list was not being saved but there was no compile or run time errors.
In the end I solved by problem by using New List(Of String)( alist) as the value in the Add to Dictionary activity - initially I just used alist - where alist is my populated list!

1 Like