需要使用 COMM 端口 2 从设备获取信息。 .NET 不支持它
我正在编写一个 VB.NET 应用程序,其中有一个部分需要向 COM 端口 2 发送一个小命令并获取返回结果。问题是.NET 似乎不支持串行通信。请帮忙。
我只需要发送命令“headtype”并获取结果。
I am writing a VB.NET app that has a piece which needs to send a small command to COM port 2 and get the return result. The problem is .NET doesnt have any support for serial communication seems like. Please help.
I just need to send the command "headtype" and get the result.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
当然可以,System.IO.Ports.SerialPort,自 .NET 2.0 起可用
It certainly does, System.IO.Ports.SerialPort, available since .NET 2.0
查看SerialPort 类。
Take a look at the SerialPort class.