Hexadecimal Byte, UInteger and Integer : Integer Family « Data Type « VB.Net Tutorial






Option Strict On

Public Module modMain
   Public Sub Main()
      Dim maxValue As Byte = &HFF
      Dim posValue As UInteger = &HF034
      Dim negValue As Integer = &HF034
   
      Console.WriteLine(maxValue)
      Console.WriteLine(posValue)
      Console.WriteLine(negValue)
   End Sub
End Module
255
61492
61492








2.1.Integer Family
2.1.1.Hexadecimal Byte, UInteger and Integer
2.1.2.Integer Family MaxValue