Convert.ToInt16 (Int32) converts 32-bit signed integer to 16-bit signed integer.
Module Example
Public Sub Main()
Dim numbers() As Integer = { Int32.MinValue, -1, 0, 121, 340, Int32.MaxValue }
Dim result As Short
For Each number As Integer In numbers
Try
result = Convert.ToInt16(number)
Console.WriteLine(result)
Catch e As OverflowException
Console.WriteLine("OverflowException")
End Try
Next
End Sub
End Module
Related examples in the same category