Skip to content

Instantly share code, notes, and snippets.

@fafa3711
Created January 11, 2021 14:02
Show Gist options
  • Save fafa3711/bf0e94ced5c2274935bc8eb303e53f57 to your computer and use it in GitHub Desktop.
Save fafa3711/bf0e94ced5c2274935bc8eb303e53f57 to your computer and use it in GitHub Desktop.
Keep Console from closing
using (var exit = new ManualResetEvent(false))
{
Console.CancelKeyPress += (sender, args) => { args.Cancel = true; exit.Set(); };
exit.WaitOne();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment