处置串口

发布于 2024-12-06 16:54:09 字数 126 浏览 1 评论 0原文

我正在使用 System.IO.Ports 类。在某些情况下,即使程序关闭,该组件仍然运行。因此,我无法打开具有相同端口名称的新串行端口,因为它已经打开。

请问,有什么方法可以在c#中处理System.IO.Ports吗?

I am using using class System.IO.Ports. In some cases this component still runs even when the program is closed. As a result I can not open the new serial port with the same port name, cause it is already opened.

Please, is there any way how to dispose System.IO.Ports in c#?

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

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

发布评论

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

评论(2

扬花落满肩 2024-12-13 16:54:09

当您说“此组件仍然运行...”时,您是否使用某些第三方工具与串行端口进行通信?因为如果您正在使用 System.IO.Ports.Serial,并且您正确地处理了它(使用“using”块),那么它肯定会在程序结束后被关闭。

When you say "this component still runs..." are you using some 3rd party tool to communicate with the Serial port? Because if you're using System.IO.Ports.Serial, and you properly dispose of it (uinsg a 'using' block) it whould be closed, certainly after your program ends.

贩梦商人 2024-12-13 16:54:09

您正在寻找名称巧妙的 Dispose 方法。

You're looking for the cunningly-named Dispose method.

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