FSO.Files.Endian.SwapUInt64 C# (CSharp) Method

SwapUInt64() public static method

public static SwapUInt64 ( ulong v ) : ulong
v ulong
return ulong
        public static ulong SwapUInt64(ulong v)
        {
            return (ulong)(((SwapUInt32((uint)v) & 0xffffffffL) << 0x20) |
                            (SwapUInt32((uint)(v >> 0x20)) & 0xffffffffL));
        }