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

SwabArrayOfLong() public static method

Swaps the bytes in specified number of values in the array of 32-bit items.
public static SwabArrayOfLong ( int array, int count ) : void
array int The array to swap bytes in.
count int The number of items to swap bytes in.
return void
        public static void SwabArrayOfLong(int[] array, int count)
        {
            SwabArrayOfLong(array, 0, count);
        }

Same methods

Tiff::SwabArrayOfLong ( int array, int offset, int count ) : void
Tiff