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


Please Help Members By Posting Answers For Below Questions

What is typeof c#?

685


Is it good to use var in c#?

615


What is _viewstart cshtml?

637


Can an abstract class inherit from another abstract class c#?

711


Is c# an array?

648


what are some characteristics of an array?

699


What is thread pooling?

714


what is the default access for a class

762


What is yield in c#?

652


Why abstraction is used in c#?

672


Can you instantiate a struct without using a new operator in c#?

723


What exactly happens when we debug and build the program?

2351


Which is more efficient for loop or while loop?

629


What is the difference between string and string in c#?

672


What is helper method in c#?

658