views:

93

answers:

1

I'd like to attach to another process from a .Net console app and explore the data area. Specifically I would like to attach to the 'Spider Solitaire' app in Windows Vista as I am interested in seeing if the cards it deals out are solveable in all situations.

Is this possible and if so which APIs should I be looking at?

This is a 'just for fun' project so I can expand my knowledge.

Ryan

+3  A: 

You'll have to use the win32 ReadProcessMemory API - there's nothing built-in. See here for information on how to do this using P/Invoke. Also, check out this sample.

Dave Cluderay