FileHelpers has a nice date converter for fields:
[FieldConverter(ConverterKind.Date, "MM-dd-yyyy")]
public DateTime MyDate;
FieldConverter does not work with properties though. I have to deal with objects that use properties so I was looking for something like this:
[PropertyConverter(ConverterKind.Date, "MM-dd-yyyy")]
public DateTime MyDate { get; set; }
How do I do this with properties?