Home  >  Article  >  Backend Development  >  In C#, what is the maximum possible value of an integer?

In C#, what is the maximum possible value of an integer?

PHPz
PHPzforward
2023-08-24 23:37:121387browse

In C#, what is the maximum possible value of an integer?

The maximum possible value of an integer is 2,147,483,647.

The following are the data types of C# and their maximum and minimum values:

##int32-bit signed integer type-2,147,483,648 to 2,147,483,6470long64-bit signed integer type-9,223,372,036,854,775,808 to 9,223,372,036,854,775,8070L##sbyteshort##uint32-bit unsigned integer type0 to 4,294,967,295064-bit unsigned integer type##ushort16-bit unsigned integer type0 to 65,5350
Type represents Range Default value
bool Boolean value True or False False
byte 8-bit unsigned integer 0 to 255

char 16-bit Unicode characters U 0000 to U ffff '\0'
decimal 128-digit exact decimal value with 28-29 significant digits (-7.9 x 1028 to 7.9 x 1028) / 100to 28 0.0M
double 64-bit double precision floating point type ( /-)5.0 x 10-324 to ( /-)1.7 x 10308 0.0D
float 32-bit single precision floating point type -3.4 x 1038 to 3.4 x 1038 0.0F
8-bit signed integer type -128 to 127 0
16-bit Signed integer type -32,768 to 32,767 0
##ulong
0 to 18,446,744,073,709,551,615 0

The above is the detailed content of In C#, what is the maximum possible value of an integer?. For more information, please follow other related articles on the PHP Chinese website!

Statement:
This article is reproduced at:tutorialspoint.com. If there is any infringement, please contact admin@php.cn delete