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.
x
10
10
1
using System;
2
class Sample
3
{
4
public static void Main(string []args)
5
{
6
Console.Write("Welcome to Webeduclick");
7
Console.Write(" "+args[0]);
8
Console.Write(" "+args[1]);
9
}
10
}