Перевод блога Эрика Липперта
Browse by Tags
All Tags »
Conditional Compilation (RSS)
-
Пользователь: почему эта программа отказывается компилироваться в релизном билде? class Program { #if DEBUG static int testCounter = 0; #endif static void Main(string[] args) { SomeTestMethod(testCounter++); } [Conditional("DEBUG")] static void SomeTestMethod(int Read More...
|