need the difference

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Which one of the following two ways of concatenating a string is more
efficient?
“String†+ “sâ€;
“String†+‘s’;
 
Hello AVL,

A> Which one of the following two ways of concatenating a string is more
A> efficient?
A> “String” + “s”;
A> “String” +‘s’;

second case performed via boxing, coz char is value type.

First case “String” + “s”; is more efficient from both

---
WBR, Michael Nemtsev [C# MVP]. Blog: http://spaces.live.com/laflour
team blog: http://devkids.blogspot.com/

"The greatest danger for most of us is not that our aim is too high and we
miss it, but that it is too low and we reach it" (c) Michelangelo
 
Back
Top