Helper functions for the unsafe version.
(ushort input)
| 61 | |
| 62 | // Helper functions for the unsafe version. |
| 63 | static public ushort ReverseBytes(ushort input) |
| 64 | { |
| 65 | return (ushort)(((input & 0x00FFU) << 8) | |
| 66 | ((input & 0xFF00U) >> 8)); |
| 67 | } |
| 68 | static public uint ReverseBytes(uint input) |
| 69 | { |
| 70 | return ((input & 0x000000FFU) << 24) | |