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