Language Basics C#

/*
Learning C# 
by Jesse Liberty
Publisher: O'Reilly 
ISBN: 0596003765
*/
 using System;
 public class ModTester
 {
     public static int Main()
     {
         for (int counter=1; counter<=100; counter++)
         {
             Console.Write("{0} ", counter);
             if ( counter % 10 == 0 )
             {
                 Console.WriteLine("\t{0}", counter);
             }
         }
         return 0;
     }
 }