◆ Performance Tips for All Applications 1. 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.Wr..