2
int를 double로 바꿀 때 Visual Studio 긴 컴파일
내 VS2013 Ultimate 사본은이 코드를 60 초 이상 컴파일합니다. class Program { static void Main(string[] args) { double dichotomy = Dichotomy( d => { try { int size = (int) d; byte[] b = new byte[size]; return -b.Length; } catch (Exception) { return 0; } }, 0, int.MaxValue, 1); Console.WriteLine(dichotomy); …