AgaHackTools.Main.Memory.MemoryUtilities.ToIntPtr C# (CSharp) Method

ToIntPtr() public static method

public static ToIntPtr ( this address ) : IntPtr
address this
return System.IntPtr
        public static IntPtr ToIntPtr(this int address) => new IntPtr(address);
        public static IntPtr ToIntPtr(this uint address) => new IntPtr(address);