USHORT
- Source: https://www.freebasic.net/wiki/wikka.php?wakka=KeyPgUshort
- Last revised: 2021-12-13
Standard data type: 16 bit unsigned.
Equivalent to Unsigned Short.
Syntax
` dim variable as Ushort
`
Description
16-bit unsigned whole-number data type. Can hold values from 0 to 65535.
Examples
start GeSHi
vb
Dim x As UShort = 0
Dim y As UShort = &HFFFF
Print "UShort Range = "; x; " to "; yend GeSHi
Output:
UShort Range = 0 to 65535Dialect Differences
- Not available in the -lang qb dialect unless referenced with the alias
__Ushort.
Differences from QB
- New to FreeBASIC
See also
ShortCushortTable with variable types overview, limits and suffixes
Back to DocToc