How to convert string that contains digits integer in VB.NET

2 Answers

0 votes
Module Module1

    Sub Main()

        Dim s As String = "1230"

        Dim n As Integer = Integer.Parse(s)

        Console.WriteLine(s)

    End Sub

End Module


' run:
' 
' 1230

 



answered Oct 18, 2018 by avibootz
0 votes
Module Module1

    Sub Main()

        Dim s As String = "1230"

        Dim n As Integer = Convert.ToInt32(s)

        Console.WriteLine(s)

    End Sub

End Module


' run:
' 
' 1230

 



answered Oct 18, 2018 by avibootz
...