Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. // OrtizOL - xCSw - http://ortizol.blogspot.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. }