Data Types VB.Net

Imports System.Globalization
Imports System
Module Example
   Public Sub Main()
        Dim numbers() As Integer = { Int32.MinValue, -156, 0, 121, 1340, Int32.MaxValue }
        Dim result As Byte
        For Each number As Integer In numbers
           Try
              result = Convert.ToByte(number)
              Console.WriteLIne("Converted the {0} value {1} to the {2} value {3}.", _
                                number.GetType().Name, number, _
                                result.GetType().Name, result)
           Catch e As OverflowException
              Console.WriteLine("The {0} value {1} is outside the range of the Byte type.", _
                                number.GetType().Name, number)
           End Try
        Next
   End Sub
End Module