当前位置:首页 > 编程语言 > C# > 正文内容

C# 数据类型

C#3年前 (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


相关文章

C# 复制图片到剪贴板

Clipboard.SetImage(pictureBox1.Image);...

C# 标准日期和时间格式说明符

Code说明Write备注Y年月2022年7月y标准日期和时间格式说明符2022年7月单独使用时y年...

ListView RetrieveVirtualListItem 事件需要每个 ListView 列的列表视图子项。”

System.InvalidOperationException:“处于 VirtualMode 中...

C# 结构体struct 例子

/// <summary> /// 结构体 /// &...

C# for,while,do while,switch

for    #region for for ...

C# 获取文件图标

string file = @"C:\Windows\exp...