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()?
You can still use LINQ:
String.Join(", ", thingy.Cast<object>());
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