如何禁用 C# 类库的并发 gc
我找到了为使用配置文件的应用程序禁用并发垃圾收集的答案。但我的 C# 应用程序是为 ArcGIS 构建的类库,并且没有配置文件。
在这种情况下如何禁用并发GC?
谢谢!
I have found answers to disable concurrent garbage collection for an application that uses config file. But my C# app is a class library built for ArcGIS, and don't have a config file.
How to disable the concurrent gc in this case?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用哪种 GC 风格的决定取决于应用程序(主机)而不是外部 DLL。
The decision over which GC flavor to use is up to the application (host) and not external DLLs.