在C#中将字节数组转换为包含字节数组的类

前端之家收集整理的这篇文章主要介绍了在C#中将字节数组转换为包含字节数组的类前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个C#函数将字节数组转换为类,给定它的类型:
  1. IntPtr buffer = Marshal.AllocHGlobal(rawsize);
  2. Marshal.Copy(data,buffer,rawsize);
  3. object result = Marshal.PtrToStructure(buffer,type);
  4. Marshal.FreeHGlobal(buffer);

我使用顺序结构:

  1. [StructLayout(LayoutKind.Sequential)]
  2. public new class PacketFormat : Packet.PacketFormat { }

这很好,直到我试图转换为包含字节数组的结构/类.

  1. [StructLayout(LayoutKind.Sequential)]
  2. public new class PacketFormat : Packet.PacketFormat
  3. {
  4. public byte header;
  5. public byte[] data = new byte[256];
  6. }

Marshal.SizeOf(type)返回16,它太低(应该是257)并导致Marshal.PtrToStructure失败并出现以下错误

Attempted to read or write protected memory. This is often an indication that other memory is corrupt.

我猜测使用固定阵列是一种解决方案,但它是否可以在不必诉诸不安全代码的情况下完成?

解决方法

不需要不安全的代码
  1. [StructLayout(LayoutKind.Sequential)]
  2. public struct PacketFormat
  3. {
  4. public byte header;
  5. [MarshalAs(UnmanagedType.ByValArray,SizeConst = 256)] public byte[] data;
  6. }

猜你在找的C#相关文章