what is the fastest way to concatenate strings in c sharp?
Answers were Sorted based on User's Feedback
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 |
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 |
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 |
What is difference between sleep () and wait ()?
There are a class A. Another class B derived from it. Now if I do A a = new B(); and B b = new B(); What will happen in both the statements. And what is the difference between these two statements.
Explain the difference between a sub and a function in c#.
What is hiding in CSharp ?
What is check/uncheck?
What is property in c#?
Explain boxing and unboxing in c#?
What is type safe in c#?
What is verbatim string literal in c#?
Is ram a heap?
What is a console application in c#?
What does a constructor do c#?