UInteger
 
Standard data type: 32 bit unsigned

Syntax

Dim variable As UInteger

Description

32-bit unsigned whole-number data type. Can hold values from 0 to 4294967295.

Example

  Dim x As UInteger = 0
  Dim y As UInteger = &HFFFFFFFF
  Print "UInteger Range = "; x; " to "; y

Output:
UInteger Range = 0 to 4294967295


Dialect Differences

  • Not available in the -lang qb dialect unless referenced with the alias __Uinteger.

Differences from QB

  • New to FreeBASIC

See also