Hi, sorry for the late reply. was not well. Now for the problem.
Say suppose I change the function signature to return the length.
void func1(int a, char*** outData, int* len)
Then my signature in C# will be:
DllImport("Some.dll")]
private static extern void func1(int a, out IntPtr ptr, out int len)
Now how can I use this IntPtr to get the values.
Need some code snippet.
Sorry for directly asking for code snippet, but my problem is that I am comparatively newbie to C# & this weired problem.
thanks for the help.
PS : I know I should not be posting any reply as Answer, but just wanted to make my comment explicitly visible.