1

我有以下结构:

unsafe struct Locomotive
{
    public fixed char locotype[6];
    public int roadno,HP;
}

我已成功将其写入二进制文件。这是代码:

Locomotive l1 = new Locomotive();
for (int i = 0; i <= 5; i++)
{
    l1.locotype[i] = textBox1.Text[i];
}
l1.roadno = int.Parse(textBox2.Text);
l1.HP = int.Parse(textBox3.Text);
BinaryWriter bw = new BinaryWriter(File.Open(@"C:\Documents and Settings\Ruchir Sharma\Desktop\Locodata.bin", FileMode.Append));
IntPtr ip = Marshal.AllocHGlobal(Marshal.SizeOf(l1));
Marshal.StructureToPtr(l1, ip, true);
Byte[] b1 = new Byte[Marshal.SizeOf(l1)];
Marshal.Copy(ip, b1, 0, b1.Length - 1);
bw.Write(b1);
MessageBox.Show("Data written successfully");
Marshal.FreeHGlobal(ip);
bw.Close();

现在,在阅读这个结构时,字符数组,即 locotype[6] 给了我一个问题。我尝试了 BinaryReader.ReadChars() 方法,但它对我不起作用。请帮助我阅读此结构。

4

1 回答 1

0

您的“读取”代码应该与您的“写入”代码相反。你不是用 WriteChars 写的,所以不要用 ReadChars 来读。您应该使用 ReadBytes,然后使用 Marshal.Copy 和 PtrToStructure。

不过,坦率地说,这种“不安全”级别(结构、元帅等中的固定缓冲区)非常罕见且专门化——我担心你可能过度设计了这一点。

于 2012-10-20T07:21:18.147 回答