ULongInt

Standard data type: 64 bit unsigned.
Equivalent to KeyPgUnsignedUnsigned KeyPgLongintLongInt.

Syntax
	KeyPgDimDim variable KeyPgAsAs ULongInt

Description
	A 64-bit unsigned whole-number data type. Can hold values from 0 to 18 
	446 744 073 709 551 615. Corresponds to an unsigned QWORD.

Example
	Dim x As ULongInt = 0
	Dim y As ULongInt = &HFFFFFFFFFFFFFFFFull
	Print "ULongInt Range = "; x; " to "; y

	Output:
	ULongInt Range = 0 To 18446744073709551615

Dialect Differences
	* Not available in the CompilerOptlang-lang qb dialect unless referenced with the 
	  alias __Ulongint.

Differences from QB
	* New to FreeBASIC

See also
	* KeyPgLongintLongInt
	* KeyPgCulngintCULngInt
	* TblVarTypesTable with variable types overview, limits and suffixes

