Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
protected override void OnExit(ExitEventArgs e)
{
#if DEBUG
    var apiCopListener = new ConsoleApiCopListener();
    ApiCopManager.AddListener(apiCopListener);
    ApiCopManager.WriteResults();
#endif
 
    base.OnExit(e);
}

The code above writes the results of the ApiCop feature to the console, which will look like this:

...