Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #107.55K
~397 People Reached
Favorite Forums
Favorite Tags
c# x 1

1 Posted Topic

Member Avatar for gicio

What spyro said - the number of times you need to add/modify the string is the cause of overhead - here is its basic usage: //add reference using System.Text //create string builder StringBuilder sb = new StringBuilder(); //add items to it sb.Append("some text"); sb.Append(" more text"); ... //output contents, in …

Member Avatar for jujubee
0
397

The End.