17
12/11
C#预定义类型
8位有符号的整数 7 7 sbyte System.SByte –128~127 (–2~2–1) 16位有符号的整数 15 15 short System.Int16 –32 768~32 767 (–2 ~2 –1) 32位有符号的整数 31 31 int System.Int32 –2 147 483 648~2 147 483 647(–2 ~2 –1) long System.Int64 64位有符号的整数 –9 223 372 036 854 775 808~9 223 372 036 854 775 807(–263~263–1) 8位无符号的整数 8 byte System.Byte 0~255(0~2–1) 16位无符号的整数 16 ushort System.Uint16 0~65535(0~2 –1) 32位无符号的整数 32 uint System.Uint32 0~4 294 967 295(0~2 –1) ulong...