[C#] 프로그램 실행시간 체크 ? 1 2 3 4 5 6 Stopwatch sw = new Stopwatch(); sw.Start(); //하고싶은 일을 수행 Console.WriteLine(sw.ElapsedMilliseconds.ToString()); [C#] 프로세스 메모리 체크 ? 1 System.Diagnostics.Process.GetCurrentProcess().PrivateMemorySize64.ToString(); [C#] ICSharpCode 라이브러리를 이용한 파일 압축 / 해제 ? 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 ..