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
~918 People Reached
Member Avatar for vegaseat

C# has two types of strings, one is immutable and the other, the class StringBuilder, is mutable (dynamic). I just wanted to hang a short code snippet out there to show you some of the typical operations.

Member Avatar for varagpraveen
0
182
Member Avatar for ProgrammersTalk
Member Avatar for Ezzaral
0
591
Member Avatar for varagpraveen

What is the difference in memory allocation and performance by using [CODE] StringBuilder.Append("Str1"); StringBuilder.Append("Str2"); and StringBuilder.Append("Str1"+"Str2"); [/CODE]

Member Avatar for mariocatch
0
145