标签: c# garbage-collection
我可以强制CG收集未使用的特定对象或不被任何其他对象引用吗?
CG
像这样:
for (int i = 0; i < properties.Count(); i++) { EntityProperties[i].Dispose(); //Like this //GC.Collect(EntityProperties[i]); }