Hello
i have a complicated json with a lot of nested collection of dictionaries. I did the inside one. but in the final step , i need to convert this FROM
dim myvarDictionary as Dictionary
dim myvarCollection as Collection
myvarDictionary=
TO
myvarCollection=
{
"MyName" : [
]
}
i tried
myvarCollection.Add "MyName" myvarDictionary
but it is not working. What i am doing wrong ?
i have a complicated json with a lot of nested collection of dictionaries. I did the inside one. but in the final step , i need to convert this FROM
dim myvarDictionary as Dictionary
dim myvarCollection as Collection
myvarDictionary=
{
<dictionary>
}
TO
myvarCollection=
{
"MyName" : [
{
<dictionary>
}
]
}
i tried
myvarCollection.Add "MyName" myvarDictionary
but it is not working. What i am doing wrong ?