R
rodri rodri via DotNetMonster.com
This function will return two values:
using namespace System::Runtime::InteropServices;
int function1([Out] int * value2);
But how can I do that with arrays?
I have tried with this, but 'array2' is returned empty:
using namespace System::Runtime::InteropServices;
int function1([Out] int array2 __gc[]) __gc[]
Does somebody know how to do it? Thanks.
using namespace System::Runtime::InteropServices;
int function1([Out] int * value2);
But how can I do that with arrays?
I have tried with this, but 'array2' is returned empty:
using namespace System::Runtime::InteropServices;
int function1([Out] int array2 __gc[]) __gc[]
Does somebody know how to do it? Thanks.