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

java中Hex.encodeHexString方法的c#实现

时间:2017-11-01 12:16:03      阅读:484      评论:0      收藏:0      [点我收藏+]

标签:pre   sharp   static   build   hex   enc   csharp   UI   实现   

public static string ToHexString(byte[] bytes) // 0xae00cf => "AE00CF "
        {
            string hexString = string.Empty;
            if (bytes != null)
            {
                StringBuilder strB = new StringBuilder();

                for (int i = 0; i < bytes.Length; i++)
                {
                    strB.Append(bytes[i].ToString("X2"));
                }
                hexString = strB.ToString();
            }
            return hexString;
        }

  

java中Hex.encodeHexString方法的c#实现

标签:pre   sharp   static   build   hex   enc   csharp   UI   实现   

原文地址:http://www.cnblogs.com/zcjiang/p/7765594.html

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