// System using System.Runtime.InteropServices; namespace GUPS.AntiCheat.Protected { /// /// Helper class to parse double to long and the other way around. /// [StructLayout(LayoutKind.Explicit)] internal struct ULongDouble { [FieldOffset(0)] public double doubleValue; [FieldOffset(0)] public ulong longValue; } }