|
I have a C++ COM wrapper for my C# dll
I need to pass an array of doubles (double*) to my C# function (double[])
After doing some googling, I find I need to convert my double* to a SAFEARRAY
However I cannot figure out how to do it from the docs and I havent found a suitable example online.
Any help is appreciated. |