Skip to content

Instantly share code, notes, and snippets.

@wullemsb
Created September 20, 2024 12:21
Show Gist options
  • Save wullemsb/24fe4a9ba68e887910c4ee785d205f34 to your computer and use it in GitHub Desktop.
Save wullemsb/24fe4a9ba68e887910c4ee785d205f34 to your computer and use it in GitHub Desktop.
class Program
{
static void Main(string[] args)
{
#if DEBUG
Console.WriteLine("Debug mode is enabled.");
#else
Console.WriteLine("Release mode. Go go go!");
#endif
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment