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 string interpolation in c#?

0 Answers  


In dynamic link library, which api is used for load library?

0 Answers   C DAC,


What does assert() do in c#?

0 Answers  


i want o/p 011242110 in c# code.

0 Answers   TCS,


What does it meant to say “the canonical” form of XML ?

1 Answers  






What is garbage collection? How to force garbage collector to run?

0 Answers  


What are value types in c#?

0 Answers  


Give examples for value types?

0 Answers  


if a base class has a number of overloaded constructors, and an inheriting class has a number of overloaded constructors; can you enforce a call from an inherited constructor to a specific base constructor?

0 Answers   Siebel Systems,


What are tuples c#?

0 Answers  


How Is The Dll Hell Problem Solved In .net?

0 Answers   Siebel Systems,


what is serilization?

6 Answers   Protech,


Categories