2
Длинная компиляция Visual Studio при замене int на double
Моя копия 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); …