i我具有诸如 [0, 4, 20, 141]
之类的小数点值数组,我希望将其转换为[0x00, 0x04, 0x14, 0x8D]
,我需要将此数组用作字节来添加缓冲区
当前数据:
byte[] packet = new byte[4];
packet[0] = 0;
packet[1] = 4;
packet[2] = 20;
packet[3] = 141;
和预期的数据发送到串行端口如下:
byte[] mBuffer = new byte[4];
mBuffer[0] = 0x02;
mBuffer[1] = 0x04;
mBuffer[2] = 0x14;
mBuffer[3] = 0x8D;
尝试:
Convert.ToByte(string.Format("{0:X}", packet[0]));
但抛出一个例外:
输入字符串的格式不正确。
您正在获得异常,因为您正在尝试在没有" $"前缀的字符串中替换一个变量。尝试以下操作:
// Converts integer 141 to string "8D"
String parsed = String.Format($"{0:X}", packet[3]);
然后,您应该能够使用以下方式转换为字节:
// Parses string "8D" as a hex number, resulting in byte 0x8D (which is 141 in decimal)
Byte asByte = Byte.Parse(parsed, NumberStyles.HexNumber);