Mega Code Archive

 
Categories / C# / Development Class
 

Gets the command line for this process

using System; class Sample  {     public static void Main()      {        Console.WriteLine("CommandLine: {0}", Environment.CommandLine);     } }