c# – FileHelpers – ‘FieldConverter’在此声明类型上无效

前端之家收集整理的这篇文章主要介绍了c# – FileHelpers – ‘FieldConverter’在此声明类型上无效前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在尝试通过FieldConverter属性设置我正在读取的CSV文件的日期格式,但我收到以下错误

Attribute ‘FieldConverter’ is not valid on this declaration type. It
is only valid on ‘field’ declarations.@H_301_5@

知道为什么会发生这种情况以及如何解决这个问题吗?@H_301_5@ @H_403_9@[DelimitedRecord(",")] [IgnoreFirst(1)] public class Someviewmodel { public int account { get; set; } [FieldConverter(ConverterKind.Date,"dd-MM-yyyy")] public DateTime doc_dte { get; set; } }

解决方法

正如您在错误消息中看到的那样,您不能在属性上使用属性FieldConverter,仅在字段上使用.所以,只需将您的属性更改为字段: @H_403_9@[FieldConverter(ConverterKind.Date,"dd-MM-yyyy")] public DateTime doc_dte;

猜你在找的C#相关文章