An analog of String.Join(string, string[]) for IEnumerable<T>
- by abatishchev
class String contains very useful method - String.Join(string, string[]).
It creates a string from an array, separating each element of array with a symbol given. But general - it doesn't add a separator after the last element! I uses it for ASP.NET coding for separating with "<br />" or Environment.NewLine.
So I want to add an empty row after each row in asp:Table. What method of IEnumerable<TableRow> can I use for the same functionality?