how to access char*** from dll import in C#

Posted by mavrick on Stack Overflow See other posts from Stack Overflow or by mavrick
Published on 2010-03-27T13:43:01Z Indexed on 2010/03/27 13:53 UTC
Read the original article Hit count: 158

Filed under:
|
|

I have a function in win32 dll with signature as:

void func1(int a, char*** outData)

int a --> input parameter
char*** outData --> output parameter - pointer to array of char strings


Any idea how to access this in C# using dll import & what should be the signature.

© Stack Overflow or respective owner

Related posts about dll

Related posts about dllimport