BitConverter 将byte转换为string
时间: 2024-06-11 14:08:16 浏览: 214
C#类型转换
BitConverter类主要用于进行基本数据类型和字节数组之间的转换,它提供了将byte数组转换为string类型的方法,如下所示:
```csharp
byte[] bytes = new byte[] { 72, 101, 108, 108, 111 }; // Hello对应的ASCII码
string str = System.Text.Encoding.ASCII.GetString(bytes);
Console.WriteLine(str); // 输出:Hello
```
此外,还可以使用其他编码方式进行转换,例如:
```csharp
byte[] bytes = new byte[] { 230, 136, 145, 229, 191, 171 }; // 你好对应的UTF-8编码
string str = System.Text.Encoding.UTF8.GetString(bytes);
Console.WriteLine(str); // 输出:你好
```
阅读全文