我正在从内存中读取一个整数(i
如下)。要将其转换为我在执行以下操作后的角色:
int i = 99;
string hex = 99.ToString("X"); //"63"
string readable = hex.FromHex(); //"c"
public static string FromHex(this string hex)
{
hex = hex.Replace("-", "");
byte[] raw = new byte[hex.Length / 2];
for (int i = 0; i < raw.Length; i++)
{
raw[i] = Convert.ToByte(hex.Substring(i * 2, 2), 16);
}
return Encoding.UTF8.GetString(raw);
}
但我想有一种更简单的方法可以做到这一点?