what is the fastest way to concatenate strings in c sharp?
Answer Posted / 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 |
Post New Answer View All Answers
What is icomparer in c#?
What are the namespace level elements?
What is interpolation in programming?
What is iqueryable and ienumerable in c#?
Is Multiple-inheritance supported by c#?
What is overriding in c#?
What is the use of getcommandlineargs() method in c#.net?
What are extender provider components? Explain how to use an extender provider in the project.
What is code verification?
What is difference between method overriding and method overloading?
Can a static class contain non static members?
What is multicast delegate explain with example?
List down the differences between “dispose” and “finalize” methods in c#.
Distinguish between a class and struct?
What is super class in c#?