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

AddLongOption() public method

Create a new fluent interface to create command line parser options.
public AddLongOption ( String LongOption ) : CommandLineParserOption
LongOption String Add a long option.
return CommandLineParserOption
        public CommandLineParserOption AddLongOption(String LongOption)
        {
            return new CommandLineParserOption(LongOption, this);
        }