OpenRA.FileFormats.Blowfish.SwapBytes C# (CSharp) Méthode

SwapBytes() static private méthode

static private SwapBytes ( uint i ) : uint
i uint
Résultat uint
        static uint SwapBytes(uint i)
        {
            i = (i << 16) | (i >> 16);
            i = ((i << 8) & 0xff00ff00) | ((i >> 8) & 0x00ff00ff);
            return i;
        }