32 비트 및 64 비트 용으로 컴파일 할 때 큰 성능 차이 (26 배 더 빠름) 값 유형 및 참조 유형 목록에 액세스 할 때 a for와 a 를 사용하는 차이를 측정하려고했습니다 foreach. 다음 클래스를 사용하여 프로파일 링을 수행했습니다. public static class Benchmarker { public static void Profile(string description, int iterations, Action func) { Console.Write(description); // Warm up func(); Stopwatch watch = new Stopwatch(); // Clean up GC.Collect(); GC.WaitForPendingFinalizers(); GC.Colle..