Create a hexadecimal value out of range of the Integer type. : Hex « Data Types « VB.Net






Create a hexadecimal value out of range of the Integer type.

 

Module Example
   Public Sub Main()

        Dim sourceNumber As Long = CLng(Integer.MaxValue) + 1
        Dim isNegative As Boolean = (Math.Sign(sourceNumber) = -1)
        Dim value As String = Convert.ToString(sourceNumber, 16)
        Dim targetNumber As Integer
        Try
           targetNumber = Convert.ToInt32(value, 16)
           If Not isNegative And ((targetNumber And &H80000000) <> 0) Then
              Throw New OverflowException()
           Else 
              Console.WriteLine("0x{0} converts to {1}.", value, targetNumber)
           End If    
        Catch e As OverflowException
           Console.WriteLine("Unable to convert '0x{0}' to an integer.", value)
        End Try 
   End Sub
End Module

   
  








Related examples in the same category

1.Data type: Long, Char, Hex and OctData type: Long, Char, Hex and Oct
2.Create a negative hexadecimal value out of range of the Long type.
3.Create a negative hexadecimal value out of range of the Byte type.
4.Create a negative hexadecimal value out of range of the Long type.
5.Create a negative hexadecimal value out of range of the UInt16 type.
6.Parse Hex number in string to Integer and catch OverflowException
7.Display value as hexadecimal
8.Display value with eight hexadecimal digits