c# 将字符串转化为byte数组
时间: 2024-01-04 20:03:27 浏览: 88
C#_string_byte数组转换解析
以下是两种C#将字符串转化为byte数组的方法:
1. 使用System.Text.Encoding.Default.GetBytes()方法:
```csharp
string str = "Hello World";
byte[] byteArray = System.Text.Encoding.Default.GetBytes(str);
```
2. 使用System.Text.Encoding.ASCII.GetBytes()方法:
```csharp
string str = "Hello World";
byte[] byteArray = System.Text.Encoding.ASCII.GetBytes(str);
```
阅读全文