我有一个由第三方系统调用的dll(C#)。
该系统调用fnSys函数并作为参数传递为void指针。 现在我需要将这个void *转换为我的结构。
我的代码是:
public struct Menu
{
public string str1;
public string str2;
}
public static unsafe int fnSys(void* value)
{
if (value!=null)
{
System.Windows.Forms.MessageBox.Show("msg");
}
return 1;
}
现在当第三方系统调用此函数时出现消息框,但我无法弄清楚如何将此值转换为MenuItem。 我也试过这样:
Menu menu = (Menu)Marshal.PtrToStructure(value, typeof(Menu));
但这不起作用。
有什么方法吗?
答案 0 :(得分:0)
我找到了解决方案:
[StructLayout(LayoutKind.Sequential, Pack = 1, Size=255, CharSet = CharSet.Ansi)]
public struct Menu
{
[MarshalAs(UnmanagedType.ByValTStr, SizeConst = 255)]
public string str1;
[MarshalAs(UnmanagedType.ByValTStr, SizeConst = 255)]
public string str2;
}
public static unsafe int fnSys(Menu value)
{
if (value!=null)
{
System.Windows.Forms.MessageBox.Show("msg");
}
return 1;
}
StructLayout属性让我们控制内存中的数据字段。
此link
的详细信息