下面是 C# 中 Byte 转换相关的函数的完整攻略:
1. Byte 转换为字符串
方法一:ToString()
使用 Byte 类型的 ToString() 方法可以将 Byte 类型转换为字符串类型。
byte number = 97;
string str = number.ToString();
方法二:BitConverter.ToString()
使用 BitConverter 类的 ToString() 方法可以将 Byte 类型转换为字符串类型。
byte[] bytes = new byte[] {0x00, 0x01, 0x02};
string str = BitConverter.ToString(bytes);
2. 字符串转换为 Byte 数组
方法一:Encoding.ASCII.GetBytes()
使用 Encoding 类的 ASCII.GetBytes() 方法可以将字符串转换为 Byte 数组。
string str = "hello world";
byte[] bytes = Encoding.ASCII.GetBytes(str);
方法二:BitConverter.GetBytes()
使用 BitConverter 类的 GetBytes() 方法可以将字符串转换为 Byte 数组。
string str = "hello world";
byte[] bytes = BitConverter.GetBytes(str);
以上就是 C# 中 Byte 转换相关的函数的完整攻略。
本站文章如无特殊说明,均为本站原创,如若转载,请注明出处:C#中Byte转换相关的函数 - Python技术站