我一直在尝试制作一个测试程序,它将文本框中的一个字节写入另一个文本框中的偏移量。
我一直在尝试这样做:
using (BinaryWriter bw = new BinaryWriter(File.OpenWrite(ofd.FileName)))
{
bw.Seek(toolStripTextBox1.Text, SeekOrigin.Begin);
bw.Write((byte)textBox1.Text);
}
toolStripTextBox1
包含我要写入的偏移量并textBox1
包含我要写入的字节。
假设我输入了toolStripTextBox1
"0xF450B0"
and in textBox1
"1052"
,我希望它把位置写到"0xF450B0"
这个: http: //gyazo.com/49afd54dfc54fc15be47a7e08f300960