commandline icon indicating copy to clipboard operation
commandline copied to clipboard

Showing help with no arguments when you have a default verb

Open icalvo opened this issue 4 years ago • 0 comments

I want to show the verbs help when you provide no arguments:

tool --> Shows verbs help. tool arg1 arg2 --> Executes default verb with those args.

By default, it either executes the default verb without arguments or, if this verb has required values, it shows the error and help for that verb.

My current workaround is this one, but I wonder if there is a neater way:

if (args.Length == 0)
{
    args = new[] { "--help" };
}

icalvo avatar Mar 17 '21 11:03 icalvo