Hi Guys
Just some weird behaviour or is just me?
after a request to a site i get json back and store it in map
parser.Initialize(res)
AllData = parser.NextArray 'returns a list with maps
Some where else in the code :
Dim tmpmap as map
tmpmap.Initialise
TmpMap=AllData.Get(2)
If TmpMap.Get("Enddate") = "null" Then '<==== Works in debug mode but not in release
' dosomething
Endif
In release has to be:
If TmpMap.Get("Enddate") = Null Then '<==== No string
' dosomething
Endif
Any tips suggestions ?
Just some weird behaviour or is just me?
after a request to a site i get json back and store it in map
parser.Initialize(res)
AllData = parser.NextArray 'returns a list with maps
Some where else in the code :
Dim tmpmap as map
tmpmap.Initialise
TmpMap=AllData.Get(2)
If TmpMap.Get("Enddate") = "null" Then '<==== Works in debug mode but not in release
' dosomething
Endif
In release has to be:
If TmpMap.Get("Enddate") = Null Then '<==== No string
' dosomething
Endif
Any tips suggestions ?