//Command Line Argument :- PASSING VALUES AT RUN TIME using System; class x { public static void Main(String[] args) { Console.WriteLine("The name is --->"+args[0]); } }