UByte

Standard data type: 8 bit unsigned.
Equivalent to KeyPgUnsignedUnsigned KeyPgByteByte.

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

Description
	8-bit unsigned whole-number data type. Can hold a value in the range of 
	0 to 255.

Example
	Dim ubytevar As UByte
	ubytevar = 200
	Print "ubytevar= ", ubytevar

Example
	  Dim x As UByte = 0
	  Dim y As UByte = &HFF
	  Print "UByte Range = "; x; " to "; y

	Output:
	UByte Range = 0 To 255

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

Differences from QB
	* New to FreeBASIC

See also
	* KeyPgByteByte
	* KeyPgCubyteCUByte
	* TblVarTypesTable with variable types overview, limits and suffixes

