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






Create a negative hexadecimal value out of range of the Byte type.

 

Class Sample
   Public Shared Sub Main()

        Dim sourceNumber As SByte = SByte.MinValue
        Dim isSigned As Boolean = Math.Sign(sourceNumber.MinValue) = -1
        Dim value As String = sourceNumber.ToString("X")
        Dim targetNumber As Byte
        Try
           targetNumber = Convert.ToByte(value, 16)
           If isSigned And ((targetNumber And &H80) <> 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 unsigned byte.", value)
        End Try 
    End Sub
End Class

   
  








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 hexadecimal value out of range of the Integer 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