Hello
I get the error msg
Couldn't get the information from the process, error code '-1073741820'.
on this code
private void button3_Click(object sender, EventArgs e) { var proc = Process.GetProcessesByName("Wow-64"); if (proc.Length != 1) return; var memo = new MemorySharp(proc[0]); // here is the error MessageBox.Show(memo.Modules.MainModule.BaseAddress+""); }
please help.
ive set platform target to x64
ive also checked proc[0].Id and it matches wow's id on task manager
Edited by shogunassassin, 11 March 2016 - 05:43 PM.