AmericasCup.Data.Crc32.UInt32ToBigEndianBytes C# (CSharp) Метод

UInt32ToBigEndianBytes() приватный Метод

private UInt32ToBigEndianBytes ( UInt32 x ) : byte[]
x System.UInt32
Результат byte[]
        private byte[] UInt32ToBigEndianBytes(UInt32 x)
        {
            return new byte[] {
            (byte)((x >> 24) & 0xff),
            (byte)((x >> 16) & 0xff),
            (byte)((x >> 8) & 0xff),
            (byte)(x & 0xff)
            };
        }