gpt4 book ai didi

c# - 从字符串转换为字节

转载 作者:太空宇宙 更新时间:2023-11-03 18:59:35 26 4
gpt4 key购买 nike

我有一个字符串,它是 40FA。我想对其执行异或运算并返回一个字节,在这种情况下为 0xBA 。但是,我只能在字符串中获取 BA。当我将 BA 转换为字节时,我得到 186

string tmp = "40FA";
int uid_1 = Convert.ToInt32(tmp.Substring(0, 2), 16);
int uid_2 = Convert.ToInt32(tmp.Substring(2, 2), 16);

int test = uid_1 ^ uid_2 ;
string final = test.ToString("X");
byte byteresult = Byte.Parse(final , NumberStyles.HexNumber);

最佳答案

尝试:

byte[] toBytes = Encoding.ASCII.GetBytes(somestring);

and for bytes to string

string something = Encoding.ASCII.GetString(toBytes);

关于c# - 从字符串转换为字节,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38139576/

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