摘要: ### 垃圾回收 ##### 具体的还得反编译去查看 > net的垃圾回收器采用mark-and-compact 算法。一次回收周期开始时,它识别对象的所有根引用。根引用是来自静态变量、 CPU寄存器以及局部变量或参数实例的任何引用。基于该列表,垃圾回收器可遍历每个根 引用所标识的树形结构,并递归确 阅读全文
posted @ 2023-05-22 21:37 Bo-Hong 阅读(15) 评论(0) 推荐(0) 编辑
摘要: ``` C# using System; using System.Collections; using System.Collections.Generic; using System.Threading; // Include Silverlight's managed resources #i 阅读全文
posted @ 2023-05-22 21:34 Bo-Hong 阅读(8) 评论(0) 推荐(0) 编辑