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

AddShortOption() public method

Create a new fluent interface to create command line parser options.
public AddShortOption ( Char ShortOption ) : CommandLineParserOption
ShortOption Char Add a short option.
return CommandLineParserOption
        public CommandLineParserOption AddShortOption(Char ShortOption)
        {
            return new CommandLineParserOption(ShortOption, this);
        }