FileHelpers
FileHelpers copied to clipboard
Allow sub class converter (with a recursive Recordinfo)
For Example:
[DelimiterRecords(";")]
class internalClass
{
string A;
string B;
[FieldConverter(ConverterKind.Date, "dd.MM.yy")]
DateTime C;
[FieldIgnored]
string D;
[FieldIgnored]
int whatEver;
...
}
[DelimiterRecords(";")]
class MyClass
{
string someOtherInfo;
string maybeAnotherThing;
[FieldAsClassConverter]
[FieldArrayLength(10)]
internalClass [] internalInfo;
}