what is the fastest way to concatenate strings in c sharp?

Answers were Sorted based on User's Feedback



what is the fastest way to concatenate strings in c sharp?..

Answer / sudheer

string.Concat("DotNet","4.0");

Ans:DotNet4.0

Is This Answer Correct ?    14 Yes 3 No

what is the fastest way to concatenate strings in c sharp?..

Answer / manish sharma

through string builder class is the fastest method.we should
use this method if we have to catenate more than 10 strings.

Is This Answer Correct ?    9 Yes 0 No

what is the fastest way to concatenate strings in c sharp?..

Answer / biruk solomon

The fastest way to concatinate string is to use
StringBuilder object.In StringBuilder object you can use a
method called Append.It has 19 overloaded method to support
different kind of datatype.You can also include your own
type if you override the toString method as you can also
pass objects to this method.

Is This Answer Correct ?    8 Yes 0 No

what is the fastest way to concatenate strings in c sharp?..

Answer / sudheer

sorry for last post.This is one is faster than previous one.
string str = "DotNet " + "4.0";

Is This Answer Correct ?    9 Yes 3 No

Post New Answer

More C Sharp Interview Questions

what is difference between is and as operators in c#?

0 Answers   Winsol Solutions,


Who is a accessibility modifier “protected internal” available to ?

0 Answers   Siebel,


Which operator cannot be overloaded in c sharp?

0 Answers  


What is an example of a delegate?

0 Answers  


What is the difference between a method and a property?

0 Answers  






What do you mean by expression tree?

0 Answers  


Describe how a .net application is compiled and executed

0 Answers  


What are value types and reference types?

0 Answers  


What is the use of partial methods?

0 Answers  


What is the difference between delegates and events in c#?

0 Answers  


What is a datacontract?

0 Answers  


Is javascript harder than c#?

0 Answers  


Categories