C#怎么以16进制向串口发送这个字符串

2025-01-31 16:08:52
推荐回答(1个)
回答1:

string A = "abcdefght";
byte[] B = System.Text.Encoding.Default.GetBytes(A);
然后将B数组发送给串口就可以了。