how to access char*** from dll import in C#
- by mavrick
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.