sbyte 别名 System.SByte -128~127
byte 别名System.Byte 0~255
short 别名System.Int16
ushort 别名 System.UInt16
int 别名 System.Int32
uint 别名 System.UInt32
long 别名 System.Int64
ulong 别名 System.UInt64
float 别名 System.Single
double 别名 System.Double
decimal 别名 System.Decimal
char 别名 System.Char 0~65535 一个Unicode字符
bool 别名 System.Boolean
string 别名 System.String
类型转换用Convert.来转换。或直接(int)强制转换。