3 using System.Text.RegularExpressions;
4 using System.Collections.Generic;
10 public static class CommandLineUtils
15 public static Dictionary<string, string> GetCommandLineFlags ()
17 var commandLineOptions =
new Dictionary<string, string>();
19 string[] args = Environment.GetCommandLineArgs();
20 bool[] isFlag = (from arg in args select arg.StartsWith(
"-")).ToArray();
22 for (
int i = 0; i < args.Length; i++)
28 if (i != args.Length - 1 && !isFlag[i + 1])
31 commandLineOptions.Add(args[i].Substring(1).ToLower(), value);
35 return commandLineOptions;