我想在这里描述我的问题。 首先,我有一个链接到偏移量的文件流,以及一个要替换的字节数组。 更具体地说,我在这里提供我的代码。
private void button1_Click(object sender, EventArgs e)
{
try
{
using (FileStream stream = File.Open(fileNameGame, FileMode.Open, FileAccess.ReadWrite))
{
stream.Position = 0x6f360c;
byte[] data = System.Text.Encoding.UTF8.GetBytes(textBox1.Text);
stream.Write(data, 0, data.Length);
}
}
catch (Exception ex)
{
MessageBox.Show(ex.ToString());
}
}
然而,这不会改变偏移量0x6f360c ...
的值