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

//字节数组转16进制字符串
private static string byteToHexStr(byte[] bytes,int length)
{
string returnStr = "";
if (bytes != null)
{
for (int i = 0; i < length; i++)
{
returnStr += bytes[i].ToString("X2");
}
}
return returnStr;
}

 

 

 

也可以

BitConverter.ToString(buffer)一句话就搞定了。

 

上一篇:React Hooks -- 实现Redux


下一篇:中国商用密码杂凑算法标准----SM3算法(数字签名)