💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
# 内置类型表(C# 参考) 下表显示了内置 C# 类型的关键字,这些类型是 [System](https://msdn.microsoft.com/zh-CN/library/system.aspx) 命名空间中的预定义类型的别名。 | C# 类型 | .NET Framework 类型 | | --- | --- | | [bool](https://msdn.microsoft.com/zh-CN/library/c8f5xwh7.aspx) | **System.Boolean** | | [byte](https://msdn.microsoft.com/zh-CN/library/5bdb6693.aspx) | **System.Byte** | | [sbyte](https://msdn.microsoft.com/zh-CN/library/d86he86x.aspx) | **System.SByte** | | [char](https://msdn.microsoft.com/zh-CN/library/x9h8tsay.aspx) | **System.Char** | | [decimal](https://msdn.microsoft.com/zh-CN/library/364x0z75.aspx) | **System.Decimal** | | [double](https://msdn.microsoft.com/zh-CN/library/678hzkk9.aspx) | **System.Double** | | [float](https://msdn.microsoft.com/zh-CN/library/b1e65aza.aspx) | **System.Single** | | [int](https://msdn.microsoft.com/zh-CN/library/5kzh1b5w.aspx) | **System.Int32** | | [uint](https://msdn.microsoft.com/zh-CN/library/x0sksh43.aspx) | **System.UInt32** | | [long](https://msdn.microsoft.com/zh-CN/library/ctetwysk.aspx) | **System.Int64** | | [ulong](https://msdn.microsoft.com/zh-CN/library/t98873t4.aspx) | **System.UInt64** | | [对象](https://msdn.microsoft.com/zh-CN/library/9kkx3h3c.aspx) | **System.Object** | | [short](https://msdn.microsoft.com/zh-CN/library/ybs77ex4.aspx) | **System.Int16** | | [ushort](https://msdn.microsoft.com/zh-CN/library/cbf1574z.aspx) | **System.UInt16** | | [string](https://msdn.microsoft.com/zh-CN/library/362314fe.aspx) | **System.String** | ## 备注 除了 **object** 和 **string** 外,表中的所有类型均称为简单类型。 C# 类型的关键字及其别名可以互换。例如,可使用下列两种声明中的一种来声明一个整数变量: ``` int x = 123; System.Int32 x = 123; ``` 若要显示任何 C# 类型的实际类型,请使用系统方法 GetType()。例如,下列语句显示了表示 myVariable 类型的系统别名: ``` Console.WriteLine(myVariable.GetType()); ``` 还可使用 [typeof](https://msdn.microsoft.com/zh-CN/library/58918ffs.aspx) 运算符。 ## 请参阅 [C# 参考](https://msdn.microsoft.com/zh-CN/library/618ayhy6.aspx) [C# 编程指南](https://msdn.microsoft.com/zh-CN/library/67ef8sbd.aspx) [C# 关键字](https://msdn.microsoft.com/zh-CN/library/x53a06bb.aspx) [值类型(C# 参考)](https://msdn.microsoft.com/zh-CN/library/s1ax56ch.aspx) [默认值表(C# 参考)](https://msdn.microsoft.com/zh-CN/library/83fhsxwc.aspx) [设置数值结果表的格式(C# 参考)](https://msdn.microsoft.com/zh-CN/library/s8s7t687.aspx) [dynamic(C# 参考)](https://msdn.microsoft.com/zh-CN/library/dd264741.aspx) [类型参考表(C# 参考)](https://msdn.microsoft.com/zh-CN/library/1dhd7f2x.aspx)