C# Hello World

                Never    
C#
       
using System;

public class Hello3
{
   public static void Main(string[] args)
   {
      Console.WriteLine("Hello, World!");
      Console.WriteLine("You entered the following {0} command line arguments:",
         args.Length );
      for (int i=0; i<args.Length; i++)
      {
         Console.WriteLine("{0}", args[i]); 
      }
   }
}

Raw Text