vb.net中类型转换

可以使用CType函数

例如:

Dim s As String = "009"

Dim a As Integer = CType (s, Integer)