Skip to content

Instantly share code, notes, and snippets.

@geoffreymcgill
Last active August 12, 2017 21:45
Show Gist options
  • Save geoffreymcgill/8bf7416d339f5460004dff6f53a8559d to your computer and use it in GitHub Desktop.
Save geoffreymcgill/8bf7416d339f5460004dff6f53a8559d to your computer and use it in GitHub Desktop.
using System;
using System.Diagnostics;
namespace Demo
{
public class App
{
public static void Main()
{
// Only call in DEBUG build mode
App.Check();
}
[Conditional("DEBUG")]
private static void Check()
{
Console.WriteLine("FAIL");
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment