我目前正在处理一个写入缓冲区的结构。将结构读回到我的应用程序时,我得到以下异常:
无法将“System.Windows.Documents.TextStore”类型的对象强制转换为“System.Version”。
将结果转换回((T)Marshal.PtrToStructure(handle.AddrOfPinnedObject(), typeof(T));
)时抛出异常。
protected static T ReadStruct<T>(Stream input)
where T : struct
{
Byte[] buffer = new Byte[Marshal.SizeOf(typeof(T))];
input.Read(buffer, 0, buffer.Length);
GCHandle handle = GCHandle.Alloc(buffer, GCHandleType.Pinned);
T result = (T)Marshal.PtrToStructure(handle.AddrOfPinnedObject(), typeof(T));
handle.Free();
return result;
}
/// <summary>
/// The header for all binary files
/// </summary>
[StructLayout(LayoutKind.Sequential, Pack = 1, CharSet=CharSet.Ansi)]
public unsafe struct BinaryHeader
{
public const String MAGIC_KEY = "TABF";
[MarshalAs(UnmanagedType.ByValTStr, SizeConst = 5)]
String _Magic;
Version _Version;
DateTime _Timestamp;
Guid _Format;
Int64 _Reserved0;
Int64 _Reserved1;
/// <summary>
/// The magic value for the test automation binary
/// </summary>
public String Magic
{
get
{
return _Magic;
}
}
/// <summary>
/// The version of the assembly ( used for debugging )
/// </summary>
public Version AssemblyVersion { get { return _Version; } }
/// <summary>
/// The formatGuid of the current binary
/// </summary>
public Guid FormatGuid { get { return _Format; } }
/// <summary>
/// The timestamp of the file
/// </summary>
public DateTime Timestamp { get { return _Timestamp; } }
public BinaryHeader(Guid formatGuid)
{
_Reserved0 = 0;
_Reserved1 = 0;
_Version = BinaryBase.AssemblyVersion;
_Format = formatGuid;
_Timestamp = DateTime.Now;
_Magic = MAGIC_KEY;
}
}
答案 0 :(得分:2)
使用这种方法烹饪您自己的二进制序列化方案是可以的,但您必须了解这些限制。核心问题是它只能处理blittable值,简单的值类型值。 pinvoke marshaller有一个带有[MarshalAs]属性的字符串的解决方法。没有针对Version 类的可用解决方法。存储在结构中的指针值将被写入文件。当你读回来时,更正常的事故就是你会得到一个AccessViolationException。除非你有幸发现指针恰好取消引用存储在GC堆上的有效对象。在您的情况下,TextStore类型的对象。
当然,这并不完全是幸运的。你必须重新考虑你的方法,_Version字段必须去。不要犹豫使用BinaryFormatter类,这是完全它的目的。