Development Class C#

/*
Mastering Visual C# .NET
by Jason Price, Mike Gunderloy
Publisher: Sybex;
ISBN: 0782129110
*/
#define DEBUG
/*
  Example21_12.cs demonstrates the use of TraceListener objects
*/
using System;
using System.Globalization;
using System.Diagnostics;
public class Example21_12 
{
  public static void Main() 
  {
    // Set up a TraceListener to a file
    TextWriterTraceListener tl = new TextWriterTraceListener("Example21_12.txt");
    Debug.Listeners.Add(tl);
    // And a second TraceListener to the event log
    EventLogTraceListener t2 = new EventLogTraceListener("Application");
    Debug.Listeners.Add(t2);
    Debug.WriteLine("Starting Main()");
    // create a date and a currency value
    DateTime dtNow = DateTime.Now;
    Double curOriginal = 12345.67;
    // and format the variables for a specific culture
    CultureInfo ci = new CultureInfo("en-US");
    string sLocalizedDate = dtNow.ToString("d", ci);
    string sLocalizedCur = curOriginal.ToString("c", ci);
    Debug.Assert(sLocalizedDate != null, "Localized date has no content");
    // print them out
    Console.WriteLine(sLocalizedDate);
    Console.WriteLine(sLocalizedCur);
    Debug.WriteLine("Exiting Main()");
    Debug.Flush();
    Debug.Close();
  }
}