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
1 Posted Topic
Re: 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 … |
The End.