Is string builder intelligent enough to handle concats without behaving like
string?
Consider
myStringBuilder .Append("one" + "two")
what does the '+' do here? Because this syntax is also legal but what is the
cost compared to
myStringBuilder .Append("one");
myStringBuilder .Append("two");
and is there a Microsoft recommended pattern for this?
string?
Consider
myStringBuilder .Append("one" + "two")
what does the '+' do here? Because this syntax is also legal but what is the
cost compared to
myStringBuilder .Append("one");
myStringBuilder .Append("two");
and is there a Microsoft recommended pattern for this?
Comment