通过 C# 调用 COM 组件的包装类是否需要实现 Dispose 模式?

发布于 2024-08-07 18:59:48 字数 128 浏览 5 评论 0原文

我有一个用 C# 编写的类,它充当 COM 组件的包装器。 COM 组件是早期绑定的,并且 RCW 已由 Visual Studio 生成。我应该在包装类中实现处置模式来清理 COM 引用,还是应该让 GC 处理它,因为它已经有一个 RCW?

I have a class written in c# which is acting as a wrapper around a COM component. The COM component is early bound and the RCW has been generated by Visual Studio. Should I implement a dispose pattern in my wrapper class to clean up the COM reference, or should I just let the GC handle it, as it already has a RCW?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

仙女 2024-08-14 18:59:48

很少需要实施 Dispose,但通常有充分的理由这样做。

如果 COM 对象代表需要快速释放的重要资源,那么这可能是实现 Dispose 的一个很好的理由。

在您的 dispose 方法中,您可以执行以下操作: -

 System.Runtime.InteropServices.Marshal.ReleaseComObject(myRCW);

因此,处置您的类将立即释放 COM 对象。

There is rarely a need to implement Dispose but there are often good reasons to do so.

If the COM object represents a significant resource that needs to be released quickly then that might be a good reason to implement Dispose.

In your dispose method you can do:-

 System.Runtime.InteropServices.Marshal.ReleaseComObject(myRCW);

Hence disposing your class will release the COM object immediately.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文