using System.Diagnostics;
namespace LISTING_2_47_The_conditional_attribute
[Conditional("VERBOSE"), Conditional("TERSE")]
static void reportHeader()
Console.WriteLine("This is the header for the report");
static void verboseReport()
Console.WriteLine("This is output from the verbose report.");
static void terseReport()
Console.WriteLine("This is output from the terse report.");
public void Main(string[] args)