Abacus.SinglePrecision.MarshalHelper.Copy C# (CSharp) 메소드

Copy() 정적인 개인적인 메소드

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