Skip to content

Integer Value Type

Overview

The Integer value type represents an integral 32-bit number.

For more information refer to the Int32 Structure topic in MSDN.

Definition

An Integer value type is defined in the following manner:

text
[ws][sign][integral-digits[,]]integral-digits[ws]
ItemBehaviourDescription
wsOptionalWhite space.
signOptionalMinus sign indicating a negative Integer value.
integral-digitsRequiredA series of digits ranging from 0 to 9. Runs of integral-digits can be partitioned by a group-separator symbol.
,OptionalA culture-specific thousands separator symbol.

Predefined values

The following is a list of predefined Integer values:

Default value0
Minimum value-2,147,483,648
Maximum value2,147,483,647

For more information refer to the Int32.Parse Method topic in MSDN.