Implode a Object List in .NET 2

Posted by serhio on Stack Overflow See other posts from Stack Overflow or by serhio
Published on 2010-04-02T13:16:43Z Indexed on 2010/04/02 13:23 UTC
Read the original article Hit count: 406

Filed under:
|
|
|

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()

© Stack Overflow or respective owner

Related posts about .NET

Related posts about implode