<< Click to Display Table of Contents >> Condicional Diretives |
![]() ![]() ![]() |
//#define DEBUG
#undef DEBUG
using System;
using System.Diagnostics;
namespace ConsoleApplication1
{
public class Pessoa
{
[Conditional("DEBUG")]
public static void Mostra()
{
Console.WriteLine("Modo debug");
}
}
class Program
{
static void Main(string[] args)
{
Pessoa.Mostra(); // mostra a msg "Modo Debug" se no cabeçalho estiver #define DEBUG
}
}
}