gpt4 book ai didi

c# - FileHelpers - 'FieldConverter' 在此声明类型上无效

转载 作者:太空狗 更新时间:2023-10-29 21:04:12 25 4
gpt4 key购买 nike

我正在尝试设置我正在通过 FieldConverter 属性读取的 CSV 文件的日期格式,但我收到以下错误 -

Attribute 'FieldConverter' is not valid on this declaration type. It is only valid on 'field' declarations.

知道为什么会发生这种情况以及如何解决它吗?

[DelimitedRecord(",")]
[IgnoreFirst(1)]
public class SomeViewModel
{
public int account { get; set; }

[FieldConverter(ConverterKind.Date, "dd-MM-yyyy")]
public DateTime doc_dte { get; set; }
}

最佳答案

正如您在错误消息中看到的,您不能在属性上使用属性 FieldConverter,只能在字段上使用。所以,只需将您的属性更改为一个字段:

[FieldConverter(ConverterKind.Date, "dd-MM-yyyy")]
public DateTime doc_dte;

关于c# - FileHelpers - 'FieldConverter' 在此声明类型上无效,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37407586/

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