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