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
Why do I get a "cs5001: does not have an entry point defined" error when compiling?
What is an example of delegation?
What does out mean c#?
What is the use of list in c#?
What is out in c#?
What is the use of flag in c#?
What are collections in c#?
How can an inner class access the members of outer class?
What is parsing?
What is a collection in c#?
What you mean by delegate in c#?
What is anonymous method in c#?
What is the benefit of using interface in c#?
Is struct object oriented?
What is the difference between list and arraylist c#?