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

SwabArrayOfShort() public static method

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

Same methods

Tiff::SwabArrayOfShort ( short array, int offset, int count ) : void
Tiff