随笔分类 -  CLR

CLR Via C#: 基元类型、引用类型和值类型
摘要:编程语言的基元类型 - 编译器直接支持的数据类型 基元类型直接映射到Framework类库(FCL)中存在的类型 int a1 = 0; System.Int32 a2 = 0; int a3 = new int(); System.Int32 a4 = new System.Int32(); C# 阅读全文

posted @ 2022-03-08 14:52 LilianChen 阅读(81) 评论(0) 推荐(0)

导航