Skip to content

Instantly share code, notes, and snippets.

@gpresland
Last active November 19, 2019 18:20
Show Gist options
  • Save gpresland/bc13d737e7ade832e89db42eb0252c24 to your computer and use it in GitHub Desktop.
Save gpresland/bc13d737e7ade832e89db42eb0252c24 to your computer and use it in GitHub Desktop.
Press Ctrl+C to shut down.
using System.Threading;
...
public static void Main(string[] args)
{
Console.WriteLine("Press Ctrl+C to shut down.");
Console.WriteLine();
var exitEvent = new ManualResetEvent(false);
Console.CancelKeyPress += (sender, e) =>
{
e.Cancel = true;
exitEvent.Set();
};
exitEvent.WaitOne();
exitEvent.Dispose();
}
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment