但是

System.Sbyte       sbyte

System.Byte         byte

System.Int16       short

System.UInt16    ushort

System.Int32       int

System.UInt32    uint

System.Int64      long

Sytem.UInt64     ulong

System.Char      char

System.Single   float

Sytem.Double   double

System.Boolean   bool

System.String    string

定义整数时,最好使用 Int16,Int32,Int64,使用FCL类名,而不是int,long等,这样更好。

原文地址:https://www.cnblogs.com/riversouth/p/10307050.html