ULong

Standard data type: 32-bit unsigned integer.
Equivalent to KeyPgUnsignedUnsigned KeyPgLongLong.

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

Description
	32-bit unsigned whole-number data type. Can hold values from 0 to 
	4294967295. Corresponds to an unsigned DWORD.

Example
	  Dim x As ULong = 0
	  Dim y As ULong = &HFFFFFFFF
	  Print "ULong Range = "; x; " to "; y

	Output:
	ULong Range = 0 To 4294967295

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

Differences from QB
	* New to FreeBASIC

See also
	* KeyPgLongLong
	* KeyPgUintegerUInteger
	* KeyPgUlongintULongInt
	* TblVarTypesTable with variable types overview, limits and suffixes

