hi all
i use this code to merge map person2 into map person:
but for some reason not all key/values are inserted .. many are just missing in the debug popup.. what am i doing wrong?
i use this code to merge map person2 into map person:
B4X:
For Each k As String In person2.Keys
Person.Put(k,person2.Get(k))
Next