public RemoteModule(IntPtr remoteHandle, IntPtr localHandle, RemoteProcessHandle processHandle)
 {
     Process      = processHandle;
     RemoteHandle = remoteHandle;
     LocalHandle  = localHandle;
 }
 public InjectedModule(IntPtr remoteHandle, IntPtr localHandle, RemoteProcessHandle processHandle, string dllPath)
     : base(remoteHandle, localHandle, processHandle)
 {
     DllPath = dllPath;
 }