Skip to content

Instantly share code, notes, and snippets.

View fafa3711's full-sized avatar
🏠
Working from home

Fabian Hohmuth fafa3711

🏠
Working from home
  • F3H Consulting
  • Dresden, Germany
View GitHub Profile
@fafa3711
fafa3711 / console.cs
Created January 11, 2021 14:02
Keep Console from closing
using (var exit = new ManualResetEvent(false))
{
Console.CancelKeyPress += (sender, args) => { args.Cancel = true; exit.Set(); };
exit.WaitOne();
}