您的位置:首页 > 编程语言 > C#

C#类型与.net Framework类型

2012-05-15 14:16 423 查看
The following table shows the keywords for built-in C# types, which are aliases of predefined types in the System namespace.

C# Type.NET Framework Type
bool
System.Boolean
byte
System.Byte
sbyte
System.SByte
char
System.Char
decimal
System.Decimal
double
System.Double
float
System.Single
int
System.Int32
uint
System.UInt32
long
System.Int64
ulong
System.UInt64
object
System.Object
short
System.Int16
ushort
System.UInt16
string
System.String
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  c# .net types table