Search code examples
delphicompiler-directives

Delphi #IF(DEBUG) equivalent?


Is there a Delphi equivalent of the C# #if(DEBUG) compiler directive?


Solution

  • Use this:

    {$IFDEF DEBUG}
    ...
    {$ENDIF}