Option Strict On
Public Module Module1
Public Sub Main()
Dim str As String = "123"
Dim int As Integer = Integer.Parse(str)
End Sub
End Module