// :c03:HelloDate2.cs

using System;

 

namespace ThinkingIn.CSharp.Chap03{

   /// Shows doc comments
   /// The documentation comments within C#
   /// are remarkably useful, both within the Visual
   /// Studio environment and as the basis for more
   /// significant printed documentation

  public class HelloDate2 {

 

    /// Entry point
    /// Prints greeting to
    /// , gets a
    /// DateTime
    /// and subsequently prints it
    /// Command-line should have a

    /// single name. All other args will be ignored
    /// 

    public static void Main(string[] args) {

      Console.WriteLine("Hello, {0} it's: ", args[0]);

      Console.WriteLine(DateTime.Now);

    }

  }

}//:~

    Source: geocities.com/vajha_harish