short数据与byte数组互转
public byte[] ShortToByte(short value) { return BitConverter.GetBytes(value); } public short ByteToShort(byte[] arr) { return BitConverter.ToInt16(arr,0); }
string数据与byte数组互转
public byte[] StringToByte(string value) { return Encoding.UTF8.GetBytes(value); //return Text.Encoding.Default.GetBytes (value); } public string ByteToString(byte[] arr) { return Encoding.UTF8.GetString(arr); //return Text.Encoding.UTF8.GetString (arr, 0, arr.Length); }
int数据与byte数组互转
public byte[] IntToByte(short value) { return BitConverter.GetBytes(value); } public int ByteToInt(byte[] arr) { return BitConverter.ToInt32(arr,0); }
原文地址:https://www.cnblogs.com/daimaxuejia/p/11942943.html
时间: 2024-12-09 01:40:54