在我的程序(C#)中,我使用方法 Marshal.PtrToStructure 将对象添加到循环中的结构中。在第一个元素,这项工作正常。但是在第二个元素处,会发生访问冲突异常。
访问冲突异常只发生在win 7(64位)上,不会发生在win xp(32位)上。
我不知道它的原因和解决方案。
请帮我。
注意:我使用 .NET Framework 3.5。
代码如下:
[StructLayout(LayoutKind.Sequential)]
public struct gpc_vertex
{
public float x;
public float y;
};
private ArrayList DoPolygonOperation()
{
IntPtr currentVertex = vertexList.vertexes;
gpc_vertex oVertext = new gpc_vertex();
for (int j = 0; j < vertexList.num_vertices; j++)
{
PositionF pos = new PositionF();
oVertext = (gpc_vertex)Marshal.PtrToStructure(currentVertex, typeof(gpc_vertex));
//Access violation exception
pos.X = oVertext.x;
pos.Y = oVertext.y;
Marshal.DestroyStructure(currentVertex, typeof(gpc_vertex));
currentVertex = (IntPtr)((int)currentVertex.ToInt64() + Marshal.SizeOf(oVertext));
posList.Add(pos);
}
}
谢谢。