Since this question had some activity a couple weeks ago, I decided it was okay for me to throw out the combined Join/Linq approach I settled on after looking at the above answers and the issues addressed in the answer to a similar question (namely that Aggregate and Concatenate fail with 0 elements).
string Result = String.Join(",", split.Select(s => s.Name);
or
string Result = String.Join(",", split.Select(s => s.ToString());
Simple, easy to read and understand, works for generic elements, allows using objects or object properties, handles the case of 0-length elements, could be used with additional Linq filtering, performs well (at least in my experience), and doesn't require creation of an additional object (StringBuilder) to implement.
And of course Join takes care of the pesky final comma that sometimes sneaks into other approaches (for, foreach), which is why I was looking for a Linq-y solution in the first place.
Of course, if anyone sees any problems with this approach, I'd love to adopt any suggestions or improvements they may have.