Reputation: 3447
Currently I debug my C# application locally and use watch, breakpoint and commands like step into and the debug inspector.
setup remote debugging with another machine as described here: http://msdn.microsoft.com/en-us/library/bt727f1t.aspx
Is it possible to see the source code of remote application and go through it step-by-step as one can do locally?
Upvotes: 0
Views: 1338
Reputation: 97691
Yes, you can. Just make sure that your symbol files (your .PDB files) are deployed remotely with your application.
Upvotes: 3
Reputation: 174319
Yes. Attaching to a remote process is just the same as attaching to a local process.
Upvotes: 1