How can read a value of a variable in memeory, as binary, which I have its pointer address for in C#?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
This article shows how to use the Win32
ReadProcessMemoryfunction to do it. Note that using theunsafekeyword is not sufficient, as it does not give you the ability to specify an explicit memory location.How to write a Memory Scanner using C#
http://www.codeproject.com/KB/cs/sojaner_memory_scanner.aspx
To view the relevant code, you will need to download the project source, and examine the
MemoryScanner.csclass.