fork download
  1. // OrtizOL - xCSw - http://o...content-available-to-author-only...t.com
  2.  
  3. #define DEPURAR
  4. //#define RASTREAR
  5. #undef RASTREAR
  6.  
  7. using System;
  8.  
  9. public class UsoDirectivas
  10. {
  11. public static void Main()
  12. {
  13. Console.WriteLine(Environment.NewLine);
  14.  
  15. #if (DEPURAR)
  16. Console.WriteLine("La depuración está habilitada.");
  17. #endif
  18.  
  19. #if (RASTREAR)
  20. Console.WriteLine("El rastreo está habilitado.");
  21. #endif
  22.  
  23. Console.WriteLine(Environment.NewLine);
  24. }
  25. }
Success #stdin #stdout 0.03s 24152KB
stdin
Standard input is empty
stdout

La depuración está habilitada.