在C#中如何使用BYTE[]转换为String

byte[] data=new byte[k];

String  s= System.Text.Encoding.Default.GetString(data, 0, k);

你可能感兴趣的:(String,C#,byte)