当前位置:首页 > 开发 > C# > 正文内容

C# 数据类型

C#4年前 (2021-12-18)
Type ByteLenghtMinMax.NET Framework Typedefault
bool4FALSETRUESystem.BooleanFALSE
sbyte1-128127System.SByte0
bytet20255System.Byte0
short2-3276832767System.Int160
ushort2065535System.UInt160
int4-21474836482147483647System.Int320
uint404294967295System.UInt320
long8-92233720368547758089223372036854775807System.Int640L
ulong8018446744073709551615System.UInt640
float4±1.5e−45±3.4e38(精度7位)System.Single0.0F
double8±5.0e−324±1.7e308(精度15-16位)System.Double0.0D
char
U+0000U+ffffSystem.Char/0
string


System.String
object


System.ObjectNULL
decimal


System.Decimal


转载请注明出处。

本文链接:http://pythonopen.com/?id=171

相关文章

C#解析Torrent获取磁力链

NuGet添加 MonoTorrentusing MonoTorrent;string&n...

C#一些重写

        pr...

C# Windows环境下以管理员启动

右键点击项目名称    -   ...

在 C# 中实现类似于 Windows 资源管理器的“名称”排序方式

要在 C# 中实现类似于 Windows 资源管理器的“名称”排序方式,你需要考虑以下几点:1. 不...

C# 缩减代码量的一些方式

static void Main() { Thread thre...

C# BackgroundWorker

1.概述BackgroundWorker是一个在 WinForms 应用程序中用于简化在后台线程执行...