Abacus.DoublePrecision.MarshalHelper.Copy C# (CSharp) Method

Copy() static private method

static private Copy ( IntPtr source, Double destination, Int32 startIndex, Int32 length ) : void
source System.IntPtr
destination Double
startIndex System.Int32
length System.Int32
return void
        internal static void Copy(
            IntPtr source,
            Double[] destination,
            Int32 startIndex,
            Int32 length)
        {
            Marshal.Copy(source, destination, startIndex, length);
        }
    }
MarshalHelper