C#值数据类型,取值范围

保留字

System命名空间中的名字

字节数

取值范围

sbyte

System.Sbyte

1

-128~127

byte

System.Byte

1

0~255

short

System.Int16

2

-32768~32767

ushort

System.UInt16

2

0~65535

int

System.Int32

4

-2147483648~2147483647

uint

System.UInt32

4

0~4292967295

long

System.Int64

8

-9223372036854775808~9223372036854775808

ulong

System.UInt64

8

0~18446744073709551615

char

System.Char

2

0~65535

float

System.Single

4

3.4E-38~3.4E+38

double

System.Double

8

1.7E-308~1.7E+308

bool

System.Boolean

 

(true,false)

decimal

System.Decimal

16

正负 1.0×10-28 到7.9×1028之间

你可能感兴趣的:(C#)