- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
What is the maximum possible value of an integer in C# ?
The maximum possible value of an integer is 2,147,483,647.
The following are the datatypes of C# with the maximum and minimum value −
Type | Represents | Range | Default Value |
---|---|---|---|
bool | Boolean value | True or False | False |
byte | 8-bit unsigned integer | 0 to 255 | |
char | 16-bit Unicode character | U +0000 to U +ffff | '\0' |
decimal | 128-bit precise decimal values 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 |
int | 32-bit signed integer type | -2,147,483,648 to 2,147,483,647 | 0 |
long | 64-bit signed integer type | -9,223,372,036,854,775,808 to 9,223,372,036,854,775,807 | 0L |
sbyte | 8-bit signed integer type | -128 to 127 | 0 |
short | 16-bit signed integer type | -32,768 to 32,767 | 0 |
uint | 32-bit unsigned integer type | 0 to 4,294,967,295 | 0 |
ulong | 64-bit unsigned integer type | 0 to 18,446,744,073,709,551,615 | 0 |
ushort | 16-bit unsigned integer type | 0 to 65,535 | 0 |
- Related Articles
- What is the maximum possible value of an integer in Python?
- What is the maximum possible value of an integer in Java ?
- Find the maximum possible value of the minimum value of modified array in C++
- C++ program to find maximum possible value for which XORed sum is maximum
- Find maximum possible stolen value from houses in C++
- C++ program to find maximum possible value of XORed sum
- Maximum value of an integer for which factorial can be calculated on a machine in C++
- Maximum possible difference of two subsets of an array in C++
- C++ Program to Perform Partition of an Integer in All Possible Ways
- if x + y = 50, what is the maximum value of the product of x and y that is possible?
- Program to find maximum possible value of an expression using given set of numbers in Python
- What is the maximum value of float in Python?
- Program to find maximum possible value of smallest group in Python
- Maximum possible XOR of every element in an array with another array in C++
- How to Read and Print an Integer value in C++

Advertisements