ImageMagick.DoubleMatrix.NativeDoubleMatrix.NativeDoubleMatrix C# (CSharp) Метод

NativeDoubleMatrix() публичный Метод

public NativeDoubleMatrix ( double values, int order ) : System
values double
order int
Результат System
      public NativeDoubleMatrix(double[] values, int order)
      {
        #if ANYCPU
        if (NativeLibrary.Is64Bit)
        #endif
        #if WIN64 || ANYCPU
        Instance = NativeMethods.X64.DoubleMatrix_Create(values, (UIntPtr)order);
        #endif
        #if ANYCPU
        else
        #endif
        #if !WIN64 || ANYCPU
        Instance = NativeMethods.X86.DoubleMatrix_Create(values, (UIntPtr)order);
        #endif
        if (Instance == IntPtr.Zero)
          throw new InvalidOperationException();
      }
      protected override string TypeName
DoubleMatrix.NativeDoubleMatrix