c# byte转化为string

byte[] bt = new byte[] { 10, 11, 33, 44, 2 };
string str=string.Join(",",bt.Select(t=>t.ToString()).ToArray());
Console.Write(str);
原文地址:https://www.cnblogs.com/woloveprogram/p/4724165.html