Huzzah! I love Extension Methods :)
This one I wrote today will take a delegate or lambda and use it to automatically create a delimited list from an IEnumerable of T:
public static string Delimit(this IEnumerable enumerable, Func toStringConverter, string delimiter
(
Read more... )
Comments 1
Of course you can do:
string.Join(, enumerable.Select(toStringConverter));
Reply
Leave a comment