What?s the difference between System.String and
System.StringBuilder classes?
Answer Posted / naveen
prefer System.StringBuilder when you are doing lot of
string manuplation operations. In which case the same
string in the memory is manipulated for the resultant
operation where as when System.String variable is used
every time a new string instance is created in the memory
| Is This Answer Correct ? | 15 Yes | 3 No |
Post New Answer View All Answers
What is the difference between throw and throw ex?
What are the return types in c#?
What is a generic in c#?
Explain how do you debug an asp.net web application?
What is multicast delegate explain with example?
Why would you use untrusted verification?
What is parallel programming in c#?
What does type safety mean?
What is a property in c#?
What is an escape sequence in c#?
What are interfaces in c#?
What is the use of the dispose method in C# ?
What does this keyword mean in c#?
Can we have multiple constructors in a class c#?
What is parallel foreach in c#?