Overload | Description |
---|---|
ReverseArray16BitWord(Byte[],Int32,Int32) | Reverses the bytes in the specified portion of the given array swapping every byte with odd index with the one after it. For example the byte array {12, 67, 31, 204} will be modified to {67, 12, 204, 31}. |
ReverseArray16BitWord(Int32[]) | Reverses the bytes of the given array swapping every byte with odd index with the one after it. |
ReverseArray16BitWord(Byte[]) | Reverses the bytes of the given array swapping every byte with odd index with the one after it. |