我正在使用以下代码发送一些数据并接收它,但我收到以下错误。我在 vb 中使用 Visual Studio 2008 编码
参数提示无法转换为字符串错误
Dim byteBuffers(2) As Byte
byteBuffers(0) = 8
byteBuffers(1) = 3
byteBuffers(2) = 6
rs232port.Write(byteBuffers, 0, 3)
Dim byteBuffer() As Byte = {0, 0, 0}
rs232port.Read(byteBuffer, 0, 3)
MsgBox(byteBuffer)
有人可以解释导致我的错误的原因吗?