Tracing To Debugger
using System;
using System.IO;
using System.Diagnostics;
class MainClass
{
[STAThread]
static void Main(string[] args)
{
Trace.WriteLine("My Trace String");
Trace.Flush();
}
}
|
HTML code for linking to this page:
Related in same category :
-
-
-
-
-
-
|