The text of this article is not in this database — only its details are. Read it on the old site: Code Optimization Techniques
5 Comments
Join the conversation! Your thoughts help the community grow.
Sign in to leave a comment.
The text of this article is not in this database — only its details are. Read it on the old site: Code Optimization Techniques
Join the conversation! Your thoughts help the community grow.
Sign in to leave a comment.
Chetan ChannePosted Aug 13, 2018, 6:14 AM
Goo article
peter andersonPosted Jun 9, 2016, 11:47 AM
Very informative article i must say, want to add one more tip for code optimization which I recently read on one blog, we can optimize our code by using stringBuilder wisely, you can check in detail here http://www.coderstechparadise.com/index.php/2016/05/21/code-optimization-tips-for-c-part-1/
Nabila TamsinPosted Nov 13, 2014, 2:58 AM
Thanks for your nice article. I have found a fine article also. I want to share it We should follow standard naming convention. The variables and methods/functions name should be relevant and small as far as possible. Use X++ instead of X=X+1. Both returns the same result but X++ use fewer characters. for more.... http://cybarlab.com/c-sharp-code-optimization-tips Hope it will help us.
Sam HobbsPosted May 29, 2013, 4:40 PM
I agree that it would help to explain the scope and relevance of the article. Note that in addition to eliminating comments, compilers can eliminate dead code.
EdPosted May 29, 2013, 9:20 AM
You should distinguish between compiled and interpreted languages. Compilers don't include comments into the executable.