UInteger

From Xojo Documentation

Data Type


Used to store positive integer values. The default value is 0. Generally you will use the Integer data type (equivalent to Int32 on 32-bit apps or Int64 on 64-bit apps) or UInteger (equivalent to UInt32 on 32-bit apps or UInt64 on 64-bit apps). There are also other size-specific integer data types that are available for use with external OS APIs.

Notes

UInteger values use 4 bytes for 32-bit apps and 8 bytes for 64-bit apps.

UInteger values range from 0 to 4,294,967,295 (32-bit apps) or 0 to 2^64-1 (18,446,744,073,709,551,615) (64-bit apps).

If you assign a value that is larger (or smaller) than what the specific Integer type can hold, then the value will "overflow". This means the value will wrap around to the corresponding largest or smallest value and continue from there.

Sample Code

Var value As Integer
value = 42
value = value * 2

See Also

Var command; Integer data type