UShort

Standard data type: 16 bit unsigned.
Equivalent to KeyPgUnsignedUnsigned KeyPgShortShort.

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

Description
	16-bit unsigned whole-number data type. Can hold values from 0 to 65535.

Example
	  Dim x As UShort = 0
	  Dim y As UShort = &HFFFF
	  Print "UShort Range = "; x; " to "; y

	Output:
	UShort Range = 0 To 65535

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

Differences from QB
	* New to FreeBASIC

See also
	* KeyPgShortShort
	* KeyPgCushortCUShort
	* TblVarTypesTable with variable types overview, limits and suffixes

