Code:
        [DllImport("PlainCLibrary.dll")]
        internal static extern IntPtr TestDoubleArray(double[] dbl, long len);
The underlying TestDoubleArray() returns double*. I'd like to have it converti=ed on my C# side to double[]. How can I do it?