Last active
October 16, 2024 17:10
-
-
Save AArnott/daa2e450fb5af165f5ca2aff42a4b5cc to your computer and use it in GitHub Desktop.
Graceful console app cancellation on Ctrl+C
This file contains 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
class Program | |
{ | |
static async Task Main(string[] args) | |
{ | |
// Add this to your C# console app's Main method to give yourself | |
// a CancellationToken that is canceled when the user hits Ctrl+C. | |
var cts = new CancellationTokenSource(); | |
Console.CancelKeyPress += (s, e) => | |
{ | |
Console.WriteLine("Canceling..."); | |
cts.Cancel(); | |
e.Cancel = true; | |
}; | |
await DoSomethingAsync(cts.Token); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Well, finally convinced of these words