.NET 성능 향상 팁
- Posted at 2008/12/22 22:31
- Filed under Enhance your ability(IT)/.NET
◆ Performance Tips for All Applications1. Exception 처리를 가급적 줄여라 : 매 Exception 처리마다 성능이 엄청나게 떨어진다. 예) 예제에서 throw Exception을 주석처리하고 실행속도를 비교해보라!public static void Main(string[] args){int j = 0;for(int i = 0; i < 10000; i++){try{ j = i;throw new System.Exception();} catch {}}System.Console.Write(j);return;...
Posted by jongkok4
- Tag
- 닷넷 성능 향상, 성능 향상
- Response
- No Trackback , No Comment
