Liberi
An exergame built for kids with CP!
CommandLineUtils.cs
1 using System;
2 using System.Text;
3 using System.Text.RegularExpressions;
4 using System.Collections.Generic;
5 using System.Linq;
6 
10 public static class CommandLineUtils
11 {
15  public static Dictionary<string, string> GetCommandLineFlags ()
16  {
17  var commandLineOptions = new Dictionary<string, string>();
18 
19  string[] args = Environment.GetCommandLineArgs();
20  bool[] isFlag = (from arg in args select arg.StartsWith("-")).ToArray();
21 
22  for (int i = 0; i < args.Length; i++)
23  {
24  if (isFlag[i])
25  {
26  string value = "";
27 
28  if (i != args.Length - 1 && !isFlag[i + 1])
29  value = args[i + 1];
30 
31  commandLineOptions.Add(args[i].Substring(1).ToLower(), value);
32  }
33  }
34 
35  return commandLineOptions;
36  }
37 }