FlatBuffers.ByteBuffer.ReverseBytes C# (CSharp) Method

ReverseBytes() static public method

static public ReverseBytes ( uint input ) : uint
input uint
return uint
        static public uint ReverseBytes(uint input)
        {
            return ((input & 0x000000FFU) << 24) |
                   ((input & 0x0000FF00U) <<  8) |
                   ((input & 0x00FF0000U) >>  8) |
                   ((input & 0xFF000000U) >> 24);
        }
        static public ulong ReverseBytes(ulong input)

Same methods

ByteBuffer::ReverseBytes ( ulong input ) : ulong
ByteBuffer::ReverseBytes ( ushort input ) : ushort