private bool WriteProcessMemory(IntPtr Pointer, byte[] BytesToWrite) { IntPtr nBytes; return(NativeImport.WriteProcessMemory(LoadedProcess.Handle, Pointer, BytesToWrite, BytesToWrite.Length, out nBytes)); }