I have c++ method with int** argument which is pointer to int array.
How can I marshall it to C#?
I have c++ method with int** argument which is pointer to int array.
How can I marshall it to C#?
You can try to get inspiration from this method signature:
void MyMethod([MarshalAs(UnmanagedType.LPArray, SizeConst=10)] int[] ar);
(The array is 10 in length)