Command line inputs in C#

This code is here to explain the inputs through command line args.

// Namespace Declaration
using System;

class Welcome
{
    // Main begins program execution.
    static void Main(string[] args)
    {
        // Write to console
        Console.WriteLine("Hello, {0}!", args[0]);       
    }
}