gpt4 book ai didi

c# - 将十六进制字符串转换为字节的内置函数

转载 作者:行者123 更新时间:2023-11-30 22:46:44 25 4
gpt4 key购买 nike

这个问题类似于one here .

可以通过以下公式轻松地将十六进制字符串转换为字节:

    public static byte[] HexStringToBytes(string hex)
{
byte[] data = new byte[hex.Length /2];
int j = 0;
for (int i = 0; i < hex.Length; i+=2)
{
data[ j ] = Convert.ToByte(hex.Substring(i, 2), 16);
++j;
}
return data;
}

但是是否有内置函数(在 .net 框架内)?

最佳答案

删除 0x 然后使用 byte.Parse(textRepresentation, System.Globalization.NumberStyles.HexNumber)

关于c# - 将十六进制字符串转换为字节的内置函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2498389/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com