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
From a versioning perspective, what are the drawbacks of extending an interface as opposed to extending a class?
Is php easier than c#?
Do unused Namespaces in c# affect run-time performance?
What is a factory in c#?
Why do we use delegates in c#?
What is a custom attribute?
Is namespace necessary in c#?
What is the difference between a variable and a literal?
What is jit? What are the different types of jit?
List down the fundamental oop concepts?
What is the default value of singleordefault?
What are All kind of access specifiers for a class and for methods
Explain how to implement an object pool in c#.net
What is the difference between list and array in c#?
What are the methods in c#?