对于作业,我需要通过串行连接向设备发送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.
谢谢!