C# 调用 c++ 指向结构的指针的指针,该如何处理,谢谢
C++结构:typedef struct _Struct{
DWORD a,
CHAR b[51];
} Struct;
typedef Struct *P_Struct;
C++的函数:BOOL Function(LPWORD a,P_Struct);
C++函数调用如下:
P_Struct pDevice;
WORD nDevices;
if(Function(&nDevice,&pDevice))
{
for(int i=0;i<nDevices;i++)
{
DWORD Tmp= pDevice[i].a;
}
}
请问上面一部分在C#里该如何实现,谢谢大家