I have a simple question.
Does the "=" the pass the reference of the mapGlobal to map2 or creates an object at new memory location?
B4X:
Dim mapGlobal As Map
mapGlobal.Initialize
mapGlobal.Put("Key1", "Value1")
map2=mapGlobal
Does the "=" the pass the reference of the mapGlobal to map2 or creates an object at new memory location?