show/hide this revision's text 4 edited body

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/>");
show/hide this revision's text 3 added 12 characters in body

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 delim result = String.Emptynew StringBuidler();
        var sb delim = new StringBuidler()String.Empty;
        while (reader.Read())
        {
           sb.Append(reader[ColumnIndex].ToString()).Append(delim)result.Append(reader[ColumnIndex].ToString()).Append(delim);
           delim = delimiter;
        }
        return sb.ToString()result.ToString();
    }
}

Now all you have to do is call it like this:

string result = reader.JoinStrings(0, "<br/>");
show/hide this revision's text 2 added 11 characters in body

This is just a combination of several of the better ideas shown:

public static class Extensions
{

    public static string JoinStrings(this DataReader reader, int positionColumnIndex, string delimiter)
    {
        string var delim = "";
        StringBuilder String.Empty;
        var sb = new StringBuidler();
        while (reader.Read())
        {
           sb.Append(reader[position]).Append(delim)sb.Append(reader[ColumnIndex].ToString()).Append(delim);
           delim = delimiter;
        }
        return sb.ToString();
    }
}

Now all you have to do is call it like this:

string result = reader.JoinStrings(0, "<br/>");
show/hide this revision's text 1