Mega Code Archive

 
Categories / C# Tutorial / Development
 

Display all command-line information

using System;    class MainClass {     public static void Main(string[] args) {      Console.WriteLine("There are " + args.Length +                         " command-line arguments.");        Console.WriteLine("They are: ");      for(int i=0; i < args.Length; i++)         Console.WriteLine(args[i]);     }   } There are 0 command-line arguments. They are: