gpt4 book ai didi

c# - System.InvalidCastException 解析 FluentCommandLineParser 参数

转载 作者:行者123 更新时间:2023-12-05 03:23:43 28 4
gpt4 key购买 nike

我尝试使用 Fclp 解析参数,但出现以下错误:

System.InvalidCastException: 'Unable to cast object of type 'System.Reflection.RtFieldInfo' to type 'System.Reflection.PropertyInfo'.'

关于可能导致它的任何想法?我传递给控制台的参数是 -D 5

class Program
{
public class ApplicationArguments
{
public int TenantId;
public int Days;
}

static void Main(string[] args)
{
var p = new FluentCommandLineParser<ApplicationArguments>();

p.Setup(arg => arg.TenantId)
.As('T', "tenantid");

p.Setup(arg => arg.Days)
.As('D', "days")
.Required();

var result = p.Parse(args);
}

最佳答案

在您的 ApplicationArguments 类中,您有公共(public)字段,而不是属性。尝试使它们成为自动实现的属性(例如 public int TenantId { get; set; } )。阅读错误消息,这可能会解决问题。

此外,这就是他们在 FluentCommandLineParser 项目自己的示例中所拥有的:https://github.com/fclp/fluent-command-line-parser#usage

引文:

public class ApplicationArguments
{
public int RecordId { get; set; }
public bool Silent { get; set; }
public string NewValue { get; set; }
}

关于c# - System.InvalidCastException 解析 FluentCommandLineParser 参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/72458318/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com