You are on page 1of 1

List of C# Data Types

Here are the C# predefined types:

Keyword Bytes .NET Type Range

byte 1 System.Int16 0 to 255

sbyte 1 System.SByte -128 to 127

char 1 System.Char Unicode

bool 1 System.Boolean 0 to 1

short 2 System.Int32 -32,768 to 32767

ushort 2 System.Uint16 0 to 65,535


-2,147,483,647 to
int 4 System.Int32
2,147,483,647
uint 4 System.UInt32 0 to 4,294,967,295

float 4 System.Single –1.5x10-45 to 3.4x1038

double 8 System.Double –5.0x10-324 to 1.7x10308

decimal 8 System.Decimal 1.0x10-28 to 7.9x1028


–9223372036854775808 to
long 8 System.Int64
9223372036854775807
ulong 8 System.Uint64 0 to 18446744073709551615

You might also like