摘要: CTS Common Type System 通用数据类型 CLS Common Language System 通用语言规范 CLR Common Languange Runtime 公共语言运行时 GC Garbarge Collection 垃圾回收 值类型在栈内存,引用类型在堆内存,栈内存的 阅读全文
posted @ 2021-12-26 19:32 ROCGuan 阅读(29) 评论(0) 推荐(0)
摘要: public class Dog { public string Name{get;set;} } public class Person { public string Name{get;set;} public int Age{get;set;} pulic Dog HisDog{get;set 阅读全文
posted @ 2021-12-26 19:09 ROCGuan 阅读(103) 评论(0) 推荐(0)
摘要: .net 是在vs2019后.net core的叫法。 .net standard是一个规范。 .net framework:windows平台实现。 .net core:跨平台实现。 xamarin:移动端实现。 创建类库时,若想被.net framework引用则要建.net standard的 阅读全文
posted @ 2021-12-26 12:34 ROCGuan 阅读(267) 评论(0) 推荐(0)