org.GraphDefined.Vanaheimr.Illias.CommandLineParser.CommandLineParser C# (CSharp) Method

CommandLineParser() public method

Create a new command line parser.
public CommandLineParser ( ) : System
return System
        public CommandLineParser()
        {
            this.ShortOptions   = new Dictionary<Char,   Action<String>>();
            this.LongOptions = new Dictionary<String, Action<String>>();
        }