C# 数组转字符串显示

byte[] arry = new byte[] { 0, 0, 0, 0, 0, 0, 0, 0 };

arry[0] = (byte)(arry[0] | 1);

string result = String.Join("", arry);

Console.WriteLine(result);

 

posted @ 2018-10-25 13:29  Hello_2018  阅读(7419)  评论(0编辑  收藏  举报