Home > VBNet > Hexadecimal Byte, UInteger and Integer

Hexadecimal Byte, UInteger and Integer

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

Categories: VBNet
  1. No comments yet.
  1. No trackbacks yet.