Development Class C#

/*
Mastering Visual C# .NET
by Jason Price, Mike Gunderloy
Publisher: Sybex;
ISBN: 0782129110
*/
/*
  Example10_4.cs illustrates how to read
  command-line arguments
*/
using System;
public class Example10_4
{
  public static void Main(string[] arguments)
  {
    for (int counter = 0; counter < arguments.Length; counter++)
    {
      Console.WriteLine("arguments[" + counter + "] = " +
        arguments[counter]);
    }
  }
}