Access and use DataTable nested within a nested dictionary

I have 4 datatables that I store in a Dictionary as values with a string representation of their contents as keys. I then store this dictionary in the in_Config so it can be accessed throughout the REFramework loop. How can I access these Datatables without getting a Strict On error?

Accesing the nested Dictionary we would use DirectCast

DirectCast(in_Config(“MappingData”, Dictionary(Of String, String))(“YourNestedKey”).toString

And/or we would chain the direct Casts when the nested Directory is of DataType String, Object again

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.