2011年5月15日 星期日

[C#] byte[] to hex format string

            StringBuilder sb = new StringBuilder(byteData.Length * 2);
            foreach (byte b in byteData)
            {
                sb.AppendFormat("{0:x2}", b);
            }

沒有留言:

張貼留言