How to get value from array of Dictionary

How Can we access the values from this type of variableCapture ?

1 Like

Hi,

Hope the following helps you.

Initialize

Dict = {new Dictionary(of String, object),new Dictionary(of String, object)}

Set Value

Dict(0)("key") = "Value"

Get Value

strValue = Dict(0)("key").toString()

Regards,