This is just a combination of several of the better ideas shown:
public static class Extensions
{
public static string JoinStrings(this DataReader reader, int ColumnIndex, string delimiter)
{
var result = new StringBuidler();
var delim = String.Empty;
while (reader.Read())
{
result.Append(reader[ColumnIndex].ToString()).Append(delim)result.Append(delim).Append(reader[ColumnIndex].ToString());
delim = delimiter;
}
return result.ToString();
}
}
Now all you have to do is call it like this:
string result = reader.JoinStrings(0, "<br/>");
