I have list of objects type Person. This class has many properties and I need them all in a comma separated list so I can use it later for Csv file.
I've managed this with foreach and adding each property, separating it with commas manual, etc.
const string commaSeparator = ",";
foreach (var item in individualsInformation)
{
csv.AppendLine(item.ReferenceNumber + commaSeparator + item.FirstName + commaSeparator +
item.Surname + commaSeparator + item.MiddleName + commaSeparator +
item.Address1 + commaSeparator + item.Address2 + commaSeparator +
item.Address3 + commaSeparator + item.Address4 + commaSeparator +
item.City + commaSeparator + item.PostalCode + commaSeparator +
item.Country + commaSeparator + item.DateOfBirth.ToString() + commaSeparator +
item.ID + commaSeparator + item.Gender + commaSeparator +
item.Component + commaSeparator + item.NationalID + commaSeparator +
item.SubSystemID + commaSeparator + item.System);
}
Then I've realized that there is much efficient way, by using string.Join
This does not work of course:
string joined = string.Join(",", listOfPersons);
And if I go by selecting property like this:
string joined = string.Join(",", listOfPersons(x => x.Id);
I get comma separated list only for that property of course.
Is there some more efficient way for getting each property separated by comma?