c# 16进制显示转化
Posted 和优秀的人一起成长
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c# 16进制显示转化相关的知识,希望对你有一定的参考价值。
非原创。
接收16进制数据,在TextBox委托显示:
private void readPortandShow() { char[] HexChar = { ‘0‘, ‘1‘, ‘2‘, ‘3‘, ‘4‘, ‘5‘, ‘6‘, ‘7‘, ‘8‘, ‘9‘, ‘A‘, ‘B‘, ‘C‘, ‘D‘, ‘E‘, ‘F‘ }; byte receivebyte = (byte)serialPort1.ReadByte(); char hexH = HexChar[receivebyte / 16]; char hexL = HexChar[receivebyte % 16]; this.tBox.Invoke(new MethodInvoker(delegate { this.tBox.AppendText(hexH.ToString() + hexL.ToString() + " "); })); }
以上是关于c# 16进制显示转化的主要内容,如果未能解决你的问题,请参考以下文章