Passing C# Multidimensional Array to C++ - CodeProject
On the C# side : double[,] ar = new double[nRow, nCol]; // Load values into ar. // From C# pass to C++/CLI ref class. Class1.Test(ar); // On C++ side: void Class1::Test(array^ ar) {/* How do I pass the 'ar' array to Native(double** a)?...