Passing Mult-Dimensional Arrays to Functions C++/CLR
I am attempting to write several math functions for interpolation and integration of time dependent variables. The functions will require inputs of 2-dimensional arrays of the time, and the dependent variable. Its easy in C++ by I need them in VC++/CLR.
Ivor Horton's Beg VC++ 2005, has an example Ex4_15, that shows how to formulate a multidimensional array in main(), and also his Ex5-15 example shows how to pass a single dimensional array as a function argument, but I have been unable figure out how to pass a two-dimensional argument to a function in VC++/CLR. Anyone have any ideas?
Thanks,
LarryC
|