I have a List collection, and I want to create a comma seperated string using the User.Id property, so:
List
\"12321,432434,123432452,132
string.Join( ",", list.Select( item => item.ID ).ToArray() );