If I create a hash as follows:
Local hHash := Hash()
HSetAACompatibility( hHash, .t. )
HSetCaseMatch( hHash, .f. )
hHash["lBoolean"] := .t.
hHash["cString"] := "My String"
In my program I have to reference it as:
?hHash["lBoolean"]
?hHash["cString"]
How do you make it be referenced as:
?hHash:lBoolean
?hHash:cString
Thanks,