Quote (Mangina @ Feb 19 2015 02:25pm)
So far i think vb.net has been a lot more intuitive but ive only used it for extending arcobjects. Last night i was able to concatenate an int with a string and it didn't give me any shit, i was surprised i didnt have to tostring it
hidden error will occur, im sure if you test it you will find out it didnt work properly
Dim s as String = "1"
Dim i as Integer = s -- this wont truly work, but wont throw an error
s = s+s -- this would make "11"
etc
and do you have options strict on? this is a must if you want to make anything that is worth making
This post was edited by t9x on Feb 19 2015 12:29pm