|
using System;
using System.Data;
using System.Data.SqlClient;
using System.Threading;
using System.Diagnostics;
class MainClass {
static void Main() {
Trace.WriteLine("Entered Main()");
for (int i = 0; i < 6; i++)
Trace.WriteLine(i);
Trace.WriteLine("Exiting from Main()");
}
}
|
Posted in Uncategorized |
This entry was posted
on Saturday, January 24th, 2009 at 1:35 pm and is filed under Uncategorized.
You can follow any responses to this entry through the RSS 2.0 feed.
You can leave a response, or trackback from your own site.
August 28th, 2009 at 6:10 pm
How to create the log file which can be used to store the TRACE messgaes?