BitMiracle.LibTiff.Classic.Tiff.SwabArrayOfDouble C# (CSharp) Method

SwabArrayOfDouble() public static method

Swaps the bytes in specified number of values in the array of double-precision floating-point numbers.
public static SwabArrayOfDouble ( double array, int count ) : void
array double The array to swap bytes in.
count int The number of items to swap bytes in.
return void
        public static void SwabArrayOfDouble(double[] array, int count)
        {
            SwabArrayOfDouble(array, 0, count);
        }

Same methods

Tiff::SwabArrayOfDouble ( double array, int offset, int count ) : void
Tiff