sub Main()
dim x as integer = 23
dim y as String = "323"
console.writeline(x + y)
console.readline()
end sub
This should give me an error right? cuz i cant add strings with integers.
But why is it giving me the added value with no errors? When i give a true string like "some name" it gives me error. Is VB auto converting string to integer in case of numbers?