Forum Discussion
EnTerr
12 years agoRoku Guru
"renojim" wrote:
That's interesting. Could that be considered a bug?
I would consider this a bug - if it were true. But i am unable to reproduce the behavior:
BrightScript Debugger> d = {}
BrightScript Debugger> d["Test"] = "Test"
BrightScript Debugger> ?d
Test: Test
BrightScript Debugger> d2 = {}
BrightScript Debugger> d2["test"] = "test"
BrightScript Debugger> ? d2
test: test
BrightScript Debugger> d.append(d2)
BrightScript Debugger> ?d
test: test
PS. Case (in)sensitivity is a PITA, in general.