brgerner
brgerner

Reputation: 4371

Non-generic IEnumerable to string

There are a lot of questions/answers about conversion from generic IEnumerable to a string.

But I need a conversion from a non-generic IEnumerable to a string. The result string should be in form of
element1.ToString() + ", " + element2.ToString() + ", " + element3.ToString() + ...
Is there a shorter way than using StringBuilder and looping through the elements by MoveNext()?

Upvotes: 3

Views: 766

Answers (1)

SLaks
SLaks

Reputation: 887469

You can still use LINQ:

String.Join(", ", thingy.Cast<object>());

Upvotes: 8

Related Questions