views:

299

answers:

2

I'm trying to create a quick debugger, wherein I can attach my application to a running .net process and execute scripts from there. I'm using C#.

How will I do it?

Thanks :)

A: 

This looks like a decent introductory article.

Lee
+1  A: 

You can attach to a process in Visual Studio and use VS tools for debugging. What does your application do that would require it to be attached to other processes outside of VS?

http://msdn.microsoft.com/en-us/library/c6wf8e4z.aspx

Andrew Siemer
The application should be small, and there will be no codes to step into. I'll be pushing those scripts in the running process.
Marc Vitalis