How can I process command line arguements
Using System;
class Class1
{
public static void Main(string[] args)
{
Console.Writeline(”You passed the following arguments”);
foreach(string arg in args)
Console.Writeline(arg);
}
}
Using System;
class Class1
{
public static void Main(string[] args)
{
Console.Writeline(”You passed the following arguments”);
foreach(string arg in args)
Console.Writeline(arg);
}
}
You must be logged in to post a comment.