commandlineparser / commandlineparser/commandline

Parser fails when an empty value is given

未关闭
#412 2 条评论 1 个 reaction 已指派 0 人 在 GitHub 查看
主要语言
C#
星标
4.8k
派生
478
PR 合并指标
30 天内没有已合并 PR

描述

Example code

```C#
static class Program
{
static void Main(string[] args)
{
var configuration = new Configuration();
var parseResult = Parser.Default.ParseArguments(args).WithParsed(result => configuration = result);

System.Console.WriteLine(parseResult.Tag);
System.Console.WriteLine(configuration.Description);
}
}

internal class Configuration
{
[Option('d', "description", HelpText = "Set the description from the project")]
public string Description { get; set; }
}
```

Running the Program with `progam.exe --description=""` results in a Parse Error:

ERROR(S):
Token '--description=' is not recognized

This is probably the same issue as #358 - but the example syntaxt was different (--description without an equal sign), which is not what I expect. But I expect an empty string to be a valid value.

贡献指南

这个仓库没有索引到贡献指南

评估

这个 Issue 还没有评估数据。

把新 issue 发到你的邮箱

精选适合新手参与的 GitHub issue 摘要。