How do I snoop on another processes memory from .Net? -
I would like to connect to the .Net Console app from another process and find out the data area. In particular, I would like to attach to the 'Spider Solitaire' app in Windows Vista because I'm interested in seeing that cards are solvable in all cases.
Is it possible and if so, what API should I see?
This is a fun project, so I can increase my knowledge.
Ryan
you use win32 ReadProcessMemory API There is nothing inherent in it - see for information about using P / Invoke. Also see the sample.
Comments
Post a Comment