"Ctrl + C" buttons pressed handle C# console app
c#, console-application, event-handling
Solution
I suspect you want to set `Console.TreatCtrlCAsInput` to `true`. (Assuming you don't want this to terminate the app.)
Problem
How can I handle two buttons pressed simultaneously ('Ctrl' + 'C'), not in the WindowsForms application, but in console C# application?