Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
什么时候在 ASP .NET MVC 中配置的控制器动作中的类对象?
除非您明确地处置它,否则只要垃圾收集器运行,它就会被处置。没有办法知道什么时候会发生。这是假设没有其他对存储在某处的对象的引用。
注意:这里的“Dispose”意味着清理连接或非托管内存等资源。这是由实现 IDisposable 的对象完成的。
在垃圾收集器运行之前,对象本身不会从内存中删除(即使已释放)。不建议尝试强制垃圾收集。