I have a list of strings and I want to dump them out as a string with semi-colon delimiters.
IEnumerable<string> foo = from f in fooList
where f.property == "bar"
select f.title;
I now want to output this:
title1;title2;title3;title4
How do I do that?