System.Runtime.Serialization.Plists.EndianConverter.SwapUInt32 C# (CSharp) Method

SwapUInt32() public static method

Swaps the endian-ness of the given value.
public static SwapUInt32 ( uint value ) : uint
value uint The value to swap the endian-ness of.
return uint
        public static uint SwapUInt32(uint value)
        {
            return (uint)(((SwapUInt16((ushort)value) & 0xffff) << 0x10) | (SwapUInt16((ushort)(value >> 0x10)) & 0xffff));
        }