Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles / programming / string

Converting Array or List of data to String => made easy! (C#, MVC3, LINQ)

0.00/5 (No votes)
4 Feb 2012CPOL 8.7K  
string.Join(,...
string.Join(",", Array.ConvertAll(cities, c => c.Name));


A Linq solution that works under .NET 3.5 is:

string.Join(",", cities.Select(c => c.Name).ToArray());


This is less efficient than ConvertAll because it is iterating through the array via the IEnumerable interface.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)