Public Class Example Public Shared Sub Main() Dim value As String value = Double.MinValue.ToString() Try Console.WriteLine(Double.Parse(value)) Catch e As OverflowException Console.WriteLine("{0} is outside the range of the Double type.", value) End Try End Sub End Class