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

SwapInt64() public static method

public static SwapInt64 ( long v ) : long
v long
return long
        public static long SwapInt64(long v)
        {
            return (long)(((SwapInt32((int)v) & 0xffffffffL) << 0x20) |
                           (SwapInt32((int)(v >> 0x20)) & 0xffffffffL));
        }