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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top