对于家庭作业,我需要通过串行连接向设备发送 4 个字节。我的应用程序有 4 个文本框用于输入需要发送的十六进制字节。我希望能够输入这样的内容:
0x01
0x81
0x82
0x81
入4个盒子。如何获取字符串并将其转换为可以通过串行发送的字节?我已经让它发送了......一些东西,但它不是:
byte(1) = Convert.toByte(textbox1)
也许我错误地将十六进制输入到我的文本框中?
MSDN 说Convert.toByte(string value)
Parameters
value
Type: System.String
A string that contains the number to convert.
谢谢!