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 #55.0K
3 Posted Topics
Re: Is It recommended to use StringBuilder.Append("STR1"+"STR2"); | |
| |
What is the difference in memory allocation and performance by using [CODE] StringBuilder.Append("Str1"); StringBuilder.Append("Str2"); and StringBuilder.Append("Str1"+"Str2"); [/CODE] |