Mega Code Archive

 
Categories / VB.Net Tutorial / Data Type
 

ULong of Hex

public class Test    public Shared Sub Main         Dim flags As ULong         flags = &H64 ' Hexadecimal &H64 = 6 * 16 + 4 = 96 + 4 = 100.         Console.WriteLine(Hex(flags)) ' Hexadecimal.    End Sub End class 64