diff --git a/docs/csharp/language-reference/preprocessor-directives.md b/docs/csharp/language-reference/preprocessor-directives.md index 123d0b44351e0..71233f5bd00f7 100644 --- a/docs/csharp/language-reference/preprocessor-directives.md +++ b/docs/csharp/language-reference/preprocessor-directives.md @@ -97,7 +97,7 @@ A conditional directive beginning with an `#if` directive must explicitly be ter ```csharp #define VC7 //... -#if debug +#if DEBUG Console.WriteLine("Debug build"); #elif VC7 Console.WriteLine("Visual Studio 7");