Bootstrap

C#字节数组转16进制字符串

 字节数组转16进制字符串:调用方法byteToHexStr,传入字节数组bytes,结果返回16进制字符串returnStr


public static string byteToHexStr(byte[] bytes)
{
    string returnStr = "";
    if (bytes != null)
    {
        for (int i = 0; i < bytes.Length; i++)
        {
            returnStr += bytes[i].ToString("X2");
        }
    }
    return returnStr;
}

;