What’s the difference between System.String and
System.Text.StringBuilder classes with example
Answer Posted / puneet mishra
according to me difference between a string class and using String Builder is that in using a string class you need to create new object befour appending it to the main string but in string builder class one don`t need to create object every time
Example for string builder class:
using System.Text;
stringBuilder str = new stringBuilder;
str.append("");
in the previous example once u create str as new instance of string builder class u just have to append every thing in to the string
Is This Answer Correct ? | 3 Yes | 2 No |
Post New Answer View All Answers
What is typeof c#?
Is it good to use var in c#?
What is _viewstart cshtml?
Can an abstract class inherit from another abstract class c#?
Is c# an array?
what are some characteristics of an array?
What is thread pooling?
what is the default access for a class
What is yield in c#?
Why abstraction is used in c#?
Can you instantiate a struct without using a new operator in c#?
What exactly happens when we debug and build the program?
Which is more efficient for loop or while loop?
What is the difference between string and string in c#?
What is helper method in c#?