Mehyar Posted December 9, 2003 Posted December 9, 2003 Man. once you get in to the depth of optimizing code you get obsessed. Anyone knows which is better to use, String.Concat() or Simply the & operator to concatinate strings... Quote Dream as if you'll live forever, live as if you'll die today
Administrators PlausiblyDamp Posted December 9, 2003 Administrators Posted December 9, 2003 For large strings using a StringBuilder rather than String.Concat or & operator. As far as I'm aware the & and String.Concat compile down to the same instructions anyway. Quote Posting Guidelines FAQ Post Formatting Intellectuals solve problems; geniuses prevent them. -- Albert Einstein
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.