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

RemoteModule() private method

Initializes a new instance of the RemoteModule class.
private RemoteModule ( MemorySharp memorySharp, ProcessModule module ) : System
memorySharp MemorySharp The reference of the object.
module System.Diagnostics.ProcessModule The native object corresponding to this module.
return System
        internal RemoteModule(MemorySharp memorySharp, ProcessModule module)
            : base(memorySharp, module.BaseAddress)
        {
            // Save the parameter
            Native = module;
        }