作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我尝试使用 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/
我尝试使用 Fclp 解析参数,但出现以下错误: System.InvalidCastException: 'Unable to cast object of type 'System.Reflect
我是一名优秀的程序员,十分优秀!