I have a question regarding marshalling of C++ arrays to C#. Does the double* automatically convert to double[]?
I know double is a blittable type, so double from C++ is the same as double from C#. And what about double**, does it convert to double[,] ?
I have the following unmanaged function: int get_values(double** param,int sz)
where param is a pointer to array of doubles and sz it s size.
How can I DLLImport this function to C#?
Thanks in advance