Cilvic
Cilvic

Reputation: 3447

Can remote debugging Visual Studio 2010 use breakpoint, watches and step into?

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

Answers (2)

Dave Markle
Dave Markle

Reputation: 97691

Yes, you can. Just make sure that your symbol files (your .PDB files) are deployed remotely with your application.

Upvotes: 3

Daniel Hilgarth
Daniel Hilgarth

Reputation: 174319

Yes. Attaching to a remote process is just the same as attaching to a local process.

Upvotes: 1

Related Questions