How can I change the image with C # as the hex codes http://prntscr.com/1oiw50
byte[] byt = File.ReadAllBytes("D:\\\\a.exe");
string hex = new SoapHexBinary(byt).ToString().Replace("504B0304", "424C0304");
File.WriteAllBytes("D:\\\\b.exe", new SoapHexBinary(hex).Value);
Exe does not work this way, but I'm trying.
Do you have a bug in this code.I turned to decimal hex codes byt changed accordingly.