I'm trying to wrap a native function with the following parameter:
nfunction(long Ustart[][2])
The corresponding wrapper function has the following signature:
wfunction(array<long, 2> ustart)
{
// use pin_ptr to "convert" the manage array to native array
// call nfunction() with the "native array"
}
I know how to use pin_ptr<> for single dimensional arrays but how do I use it in this case Thanks for any help!