C# Command Line Arguments

Command Line Arguments in C#:

Command Line Arguments are parameters supplied to the Main() method at the time of invoking it for execution.

using System;
class Sample
{
public static void Main(string []args)
{
Console.Write("Welcome to Webeduclick");
Console.Write(" "+args[0]);
Console.Write(" "+args[1]);
}
}