Implode a Object List in .NET 2
- by serhio
I have(.NET2) an List<Object> objects.
I want to "implode" (PHP concept) this array to CSV(obj1;obj2;obj3...)
What is the most efficient way? StringBuilder, string.Join?
NB.
Each object implements a specific override of ToString()