Last active
November 19, 2019 18:20
-
-
Save gpresland/bc13d737e7ade832e89db42eb0252c24 to your computer and use it in GitHub Desktop.
Press Ctrl+C to shut down.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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