PS3DumpChecker.Common.Swap C# (CSharp) Method

Swap() public static method

public static Swap ( uint x ) : uint
x uint
return uint
        public static uint Swap(uint x) { return (x & 0x000000FF) << 24 | (x & 0x0000FF00) << 8 | (x & 0x00FF0000) >> 8 | (x & 0xFF000000) >> 24; }

Same methods

Common::Swap ( ulong x ) : ulong