Parsing command line arguments is a common step in console applications. I needed a simple way of doing this without having to register a bunch of event handlers or complicated argument patterns. It also needed to support the most common argument flags ("-", "--", and "/"), as well as handle values with spaces in them (such as file paths.)
Using the code
The code is extremely easy to use. Simple call the Parse() method on CommandLine class with the string[] of arguments you wish to parse. Then extract the arguments and parameters from the returned CommandArgs.
For example:
static void Main(string[] args)
{
CommandArgs commandArgs = CommandLine.Parse(args);
Console.WriteLine("Command Line Arguments:");
foreach ( KeyValuePair<string, string> pair in commandArgs.ArgPairs )
{
Console.WriteLine( string.Format( " {0} = {1}", pair.Key, pair.Value ));
}
Console.WriteLine("\nCommand Line Parameters:");
foreach ( string param in commandArgs.Params )
{
Console.WriteLine( " " + param );
}
}
History