// OrtizOL - xCSw - http://o...content-available-to-author-only...t.com #define DEPURAR //#define RASTREAR #undef RASTREAR using System; public class UsoDirectivas { public static void Main() { Console.WriteLine(Environment.NewLine); #if (DEPURAR) Console.WriteLine("La depuración está habilitada."); #endif #if (RASTREAR) Console.WriteLine("El rastreo está habilitado."); #endif Console.WriteLine(Environment.NewLine); } }