码迷,mamicode.com
首页 > Windows程序 > 详细

c# 16进制显示转化

时间:2016-07-04 22:03:21      阅读:256      评论:0      收藏:0      [点我收藏+]

标签:

非原创。

接收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进制显示转化

标签:

原文地址:http://www.cnblogs.com/studylyn/p/5641599.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!