Binarysharp.MemoryManagement.Modules.RemoteModule.Eject C# (CSharp) Method

Eject() public method

Ejects the loaded dynamic-link library (DLL) module.
public Eject ( ) : void
return void
        public void Eject()
        {
            // Eject the module
            MemorySharp.Modules.Eject(this);
            // Remove the pointer
            BaseAddress = IntPtr.Zero;
        }