We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
` [FixedLengthRecord(FixedMode.AllowLessChars)] public class Customer { [FieldFixedLength(5)] public int CustId;
[FieldFixedLength(30)] [FieldTrim(TrimMode.Both)] public string Name; [FieldFixedLength(8)] [FieldConverter(ConverterKind.DateMultiFormat, "ddMMyyyy", "MMyyyy")] public DateTime AddedDate;
[???] public Address[] Adresses
}`
`[FixedLengthRecord(FixedMode.AllowLessChars)] public class Address { [FieldFixedLength(5)] public int AddId;
[FieldFixedLength(30)] public string City; [FieldFixedLength(30)] public string Street; [FieldFixedLength(8)] public string Number;
What I should make into Attributes for this part of class (array of Address[] class)
The text was updated successfully, but these errors were encountered:
I found this useful when I had the problem
FileHelpers/FileHelpers.Tests/Tests/Common/ArrayFields.cs
Line 536 in ecc07e9
Sorry, something went wrong.
No branches or pull requests
`
[FixedLengthRecord(FixedMode.AllowLessChars)]
public class Customer
{
[FieldFixedLength(5)]
public int CustId;
[???]
public Address[] Adresses
}`
`[FixedLengthRecord(FixedMode.AllowLessChars)]
public class Address
{
[FieldFixedLength(5)]
public int AddId;
}`
What I should make into Attributes for this part of class (array of Address[] class)
[???]
public Address[] Adresses
The text was updated successfully, but these errors were encountered: