My C++ DLL have a function like this:
void func1(int& count, int* pValue);
this function will determine the "count", and put some values into the pValue int array which is the length of "count".
how can I define my C# code? you can ignor the [DllImport ...] part.
thanks,