Hi Erel,
you say that adding strings is different than in b4a
because of "lack of memory" .....
But see in Ardruino. IDE I make it like this
float t = dht.readTemperature();
sendLine = String("Temp: ")+ t + "C";
Why it cant be like in b4a :
sendLine = "Temp: " & t & "C"
there should be a way your compiler/translater convert to the C code.
I dont see a different of memory usage.
Why, like this ?
Dim c As String = JoinStrings(Array As String ......
Maybe allow both options and the developer decide , depending on the memory he has for use.
you say that adding strings is different than in b4a
because of "lack of memory" .....
But see in Ardruino. IDE I make it like this
float t = dht.readTemperature();
sendLine = String("Temp: ")+ t + "C";
Why it cant be like in b4a :
sendLine = "Temp: " & t & "C"
there should be a way your compiler/translater convert to the C code.
I dont see a different of memory usage.
Why, like this ?
Dim c As String = JoinStrings(Array As String ......
Maybe allow both options and the developer decide , depending on the memory he has for use.