一,以什么是GC所认为的垃圾? 不再被应用程序的root或者别的对象所引用的对象就是已经死亡的对象,即所谓的垃圾,需要被回收 二,在仓储设计中,我们都知道非托管资源的手动释放,但继承的IDisposable的方法在什么时候实现? using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace GcDemo {…