commandlineparser / commandlineparser/commandline
Showing help with no arguments when you have a default verb
未关闭
- 主要语言
- C#
- 星标
- 4.8k
- 派生
- 478
- PR 合并指标
- 30 天内没有已合并 PR
描述
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:
```csharp
if (args.Length == 0)
{
args = new[] { "--help" };
}
```
贡献指南
这个仓库没有索引到贡献指南
评估
这个 Issue 还没有评估数据。