处置串口
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
当您说“此组件仍然运行...”时,您是否使用某些第三方工具与串行端口进行通信?因为如果您正在使用 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.
您正在寻找名称巧妙的
Dispose
方法。You're looking for the cunningly-named
Dispose
method.