I would like to marshal an array of ints from C++ to C#. I have an unmanaged C++ dll which contains:
DLL_EXPORT int* fnwrapper_intarr() { int* test = new
Just to add a tip to Alex F Answer : If you don't know the size of Array it's easy to get,define another dll_export to get the array size.