HI guys,
I have the need to store a big dictionary in one of my classes. The problem is that the compiler is throwing a "too many objects" error when I try to execute the code. It seems there is a limitation for the number of keys in a dictionary. What is the best way to create a huge dictionary that has the following form:
var oDict = {
"DICT_PROP1" => {
"PROP1" => "PROP1_VALUE",
"PROP2" => "PROP2_VALUE",
"PROP3" => "PROP3_VALUE"
},
"DICT_PROP2" => {
"PROP1" => "PROP1_VALUE",
"PROP2" => "PROP2_VALUE",
"PROP3" => "PROP3_VALUE"
},
"DICT_PROP3" => {
"PROP1" => "PROP1_VALUE",
"PROP2" => "PROP2_VALUE",
"PROP3" => "PROP3_VALUE"
},
............
}
I am expecting to have approx. 200 keys in the first level and 4-5 in the second level. I was already thinking about putting the data into the property file, but there I am not allowed to use type dictionary.
Thanks!
Bye