C# string型12转如何转换成byte型0x12 ?

2024-11-17 13:24:01
推荐回答(2个)
回答1:

public static byte[] HexStringToByteArray(string s)
{
    s = s.Replace(" ", "");
    byte[] buffer = new byte[s.Length / 2];
    for (int i = 0; i < s.Length; i += 2)
        buffer[i / 2] = (byte)Convert.ToByte(s.Substring(i, 2), 16);
    return buffer;
}

回答2:

用substr,你看下这个函数