Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // OrtizOL - xCSw - http://ortizol.blogspot.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);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement