Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

C# CommandLineParser --help printing then stopping

I'm building a C# console app which uses CommandLineParser to get some arguments from cmd.

The library already comes by default with the --help (or help verb) to display help information about each parameter accepted.

Now when I run the --help command I do get the help screen, but then the program continues, but it breaks, as the other default parameters are not set.

Code looks like this:

class Options
{
    [Option('f', "force", Required = false, Default = false,
        HelpText = "Force ....")]
    public bool Force { get; set; }

    [Option('v', "version", Required = false, Default = "",
        HelpText =
            "....")]
    public string Version { get; set; }

    [Option('s', "silent", Required = false, Default = false, HelpText = "Disables output ...")]
    public bool Output { get; set; }

    [Option('p', "path", Required = false, Default = "../some/dir/",
        HelpText =
            "Specifies the path ...")]
    public string StartPath { get; set; }
}

Then in the program:

static int Main(string[] args)
{

    try
    {

        var opts = new Options();

        Parser.Default.ParseArguments<Options>(args).WithParsed(parsed => opts = parsed);

        string version = opts.Version;

        PATCH_LOCATION = opts.StartPath;

        ....

So I get the help screen, and then the program keeps running (breaks as opts.StarPath is not set, neither is any of the other defaults).

Any idea how to "exit" the program when the "help" command is received?

NOTE: CommandLineParser also throws a help screen if an unknown parameter is used, which should also exit the program.

like image 728
Fede E. Avatar asked Jul 31 '18 16:07

Fede E.


People also ask

What C is used for?

C programming language is a machine-independent programming language that is mainly used to create many types of applications and operating systems such as Windows, and other complicated programs such as the Oracle database, Git, Python interpreter, and games and is considered a programming foundation in the process of ...

Is C language easy?

C is a general-purpose language that most programmers learn before moving on to more complex languages. From Unix and Windows to Tic Tac Toe and Photoshop, several of the most commonly used applications today have been built on C. It is easy to learn because: A simple syntax with only 32 keywords.

What is C in C language?

What is C? C is a general-purpose programming language created by Dennis Ritchie at the Bell Laboratories in 1972. It is a very popular language, despite being old. C is strongly associated with UNIX, as it was developed to write the UNIX operating system.

What is the full name of C?

In the real sense it has no meaning or full form. It was developed by Dennis Ritchie and Ken Thompson at AT&T bell Lab. First, they used to call it as B language then later they made some improvement into it and renamed it as C and its superscript as C++ which was invented by Dr.


1 Answers

You should check the ParseResult returned by WithParsed:

var result = Parser.Default
    .ParseArguments<Options>(args)
    .WithParsed(parsed => opts = parsed);
if (result.Tag == ParserResultType.NotParsed)
{
    // Help text requested, or parsing failed. Exit.
    return 1;
}

(I believe that requesting help is equivalent to failed parsing. Definitely worth checking.)

like image 140
Jon Skeet Avatar answered Sep 27 '22 20:09

Jon Skeet