public class Separator
{
private string sep;
private bool first = true;
public Separator(string sep)
{
this.sep = sep;
}
public virtual string ToString()
{
string reply = first ? "" : sep;
first = false;
return reply;
}
}
var sep = new Separator("<br/>");
var builder = new StringBuilder();
while (reader.Read())
{
builder.Append (separator) sep.ToString()) ;
builder.Append (reader[0]) ;
}
|
2 | added 5 characters in body | ||
|
|
||||
|
1 |
|
||
|
||||
