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

SwapInt64() public static method

Swaps the endian-ness of the given value.
public static SwapInt64 ( long value ) : long
value long The value to swap the endian-ness of.
return long
        public static long SwapInt64(long value)
        {
            return (long)(((SwapInt32((int)value) & 0xffffffffL) << 0x20) | (SwapInt32((int)(value >> 0x20)) & 0xffffffffL));
        }