AgaHackTools.Main.Memory.MemoryUtilities.ToIntPtr C# (CSharp) Метод

ToIntPtr() публичный статический Метод

public static ToIntPtr ( this address ) : IntPtr
address this
Результат System.IntPtr
        public static IntPtr ToIntPtr(this int address) => new IntPtr(address);
        public static IntPtr ToIntPtr(this uint address) => new IntPtr(address);