Is there a way to take a List and convert it into a comma separated string?
I know I can just loop and build it, but somehow I think some of you guys a more cool w
List list = ...; string.Join(",", list.Select(n => n.ToString()).ToArray())