5 lines
103 B
Text
5 lines
103 B
Text
Dim s As String = "123"
|
|
|
|
s = CStr(CInt("123") + 1)
|
|
' or
|
|
s = (CInt("123") + 1).ToString
|