I have a situation where I need to concatenate several string to form an id of a class. Basically I'm just looping in a list to get the ToString values of the objects and then concatenating them.
foreach (MyObject o in myList)
result += o.ToString();
The list is NOT expected to have more than 5 elements (although it could but that's a very, very marginal case) and usually will have from 1 to 3 elements, being common for it to just have one or two.
What would be more performance, keeping the concatenation or using an StringBuilder?
StringBuilder bld = new StringBuilder()
foreach (MyObject o in myList)
bld.Append(o.ToString());
I'm unsure if creating the StringBuilder will take more time than standard concatenation for the most usual case.
This is lazy, items on the list do not change once created so the id is lazily constructed once when called.
As a side note... Should I use a fixed array instead of a List? Would I get any performance or memory improvement if I do? (List is only used as an IEnumerable anyway)
A more general view of the question could be, how many strings are enough to stop concatenating and start building?
Should I even bother to test case the scenario?
if (myList.Count > 4)
ConcatWithStringBuilder(myList);
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…