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?
I would avoid reflection if possible.
You can achieve it with compile time safety and readable code easily:
IEnumerable<string> personTexts = listOfPersons
.Select(p => String.Join(",", p.ReferenceNumber, p.FirstName, p.Surname, ...));
string joined = String.Join(Environment.NewLine, personTexts);
You have full control over which property should be used and in which order.
Reflection is (sometimes) your friend:
var props = item.GetType().GetProperties(BindingFlags.Public | BindingFlags.Instance); // todo: cache & filter not-needed props)
var itemStr = string.Join(", ",
props.Select(p => p.GetValue(item, null)?.ToString())
.ToArray());
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With