Cilvic
Cilvic

Reputation: 3447

remote debugging debug (VS2010 c#)

To debug a C# application remotely I attach to the process using the remote debuggin monitor.

Debugging works fine except that I haven't found a way to read the Console.WriteLine() on my local machine. Anyway to get the console Output transfered?

Or any other way to easily write debug message which I can tail on my local machine?

Upvotes: 1

Views: 910

Answers (1)

Daniel Hilgarth
Daniel Hilgarth

Reputation: 174309

Use Debug.WriteLine.

Upvotes: 2

Related Questions