我是 C# 二进制的新手,我需要知道一些事情......
读取exe
将其转换为字符串(例如 10001011)
修改字符串
写回一个新的exe
我听说了一些关于string.Join
将二进制转换为字符串的东西,但我不太明白。
要将 exe 转换为二进制字符串,首先将其读入字节数组:
byte[] fileBytes = File.ReadAllBytes(inputFilename);
然后:
public static string ToBinaryString(byte[] array)
{
var s = new StringBuilder();
foreach (byte b in array)
s.Append(Convert.ToString(b, 2));
return s.ToString();
}
将其转换为二进制字符串。
要将二进制字符串转换回字节数组:
public static byte[] FromBinaryString(string s)
{
int count = s.Length / 8;
var b = new byte[count];
for (int i = 0; i < count ; i++)
b[i] = Convert.ToByte(s.Substring(i * 8, 8), 2);
return b;
}
最后,写入文件:
File.WriteAllBytes(path, fileBytes);