码迷,mamicode.com
首页 > 编程语言 > 详细

IEE754算法

时间:2019-01-29 18:11:46      阅读:234      评论:0      收藏:0      [点我收藏+]

标签:turn   []   bsp   converter   nbsp   color   code   val   oat   

C# IEE754算法,仪表设备经常用的数据指令.16进制转10进制,10进制转16进制互转.留作备份,并发给刚入门工控的人.
算法原理很多人都解释啦,在此就不多说啦,时间有限,上来就干!

  public static class IEE754Method
    {
        public static float HexToFloat(this string hexValue)
        {
            try
            {
                uint uintValue = Convert.ToUInt32(hexValue, 16);
                byte[] bytesValue = BitConverter.GetBytes(uintValue);
                float floatValue = BitConverter.ToSingle(bytesValue, 0);
                return floatValue;
            }
            catch
            {
                throw;
            }
        }

        public static string FloatToHex(this float floatValue)
        {
            try
            {
                byte[] bytesValue = BitConverter.GetBytes(floatValue);
                int intValue = BitConverter.ToInt32(bytesValue, 0);
                return intValue.ToString("X8");
            }
            catch
            {
                throw;
            }
        }
    }

 

IEE754算法

标签:turn   []   bsp   converter   nbsp   color   code   val   oat   

原文地址:https://www.cnblogs.com/mr-meng/p/IEE754.html

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