国产97色在线|亚洲-欧美人妻另类制服丝袜-欧美人成国产91视频-殷素素一女战二夫|www.ycjrc.net

C# 字符串 16進制 轉換

發布時間:2018-02-03 16:59 作者:獨孤劍 閱讀:1411

        static void Main(string[] args)
        {
            byte[] bt = new byte[] { 0, 0, 0, 0, 0, 0, 7, 211 };
            string str1 = "0x" + BitConverter.ToString(bt).Replace("-", "");// 0x00000000000007D3
            StringBuilder sb = new StringBuilder();
            for (int i = 0; i < 8; i++)
            {
                //sb.Append(bt[i].ToString("X2"));
                sb.AppendFormat("{0:X2}", bt[i]);
            }
            string str2 = "0x" + sb.ToString();// 0x00000000000007D3

            int d = "0x00000000000007D3".Length;
            //byte bt2 = Convert.ToByte("00000000000007D3");
            //byte[] b2= StringToHexByte("00000000000007D3");
            //byte[] bt3 = System.Text.Encoding.Default.GetBytes("00000000000007D3");//字符轉換成字節數組     
            string cd = 2651.ToString("X16");

            long f = 0x00000000000017A7;
            long g = int.Parse("00000000000017A7", System.Globalization.NumberStyles.AllowHexSpecifier);
        }

        /// <summary> 
        /// 字符串轉16進制字節數組 
        /// </summary> 
        /// <param name="input"></param> 
        /// <returns></returns> 
        private static byte[] StringToHexByte(string input)
        {
            input = input.Replace(" ", "");
            if ((input.Length % 2) != 0)
                input += " ";
            byte[] result = new byte[input.Length / 2];
            for (int i = 0; i < result.Length; i++)
                result[i] = Convert.ToByte(input.Substring(i * 2, 2), 16);
            return result;
        }

微信打賞, 微信掃一掃

支付寶打賞, 支付寶掃一掃

如果文章對您有幫助,歡迎給作者打賞

作者最新文章
開發過程中解決360兼容模式瀏覽器的方法
云南象群向西南方向遷移,云南離群獨象距離象群約12公里
吉林做網站最低價格,吉林企業網站建設價格低至500元起
守象人直擊云南象群最新動向
網站影響百度蜘蛛抓取量的因素有哪些?為什么我的網站Baidu蜘蛛來的次數少?
企業名片
在線客服