From eb5234fcd42a3c2491d40d627add1c8bc9b2f940 Mon Sep 17 00:00:00 2001 From: Florian Dubois Date: Wed, 16 Jun 2021 18:17:49 +0200 Subject: [PATCH] Don't automatically close the console at the end of the program --- Program.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Program.cs b/Program.cs index 9331be3..0a88390 100644 --- a/Program.cs +++ b/Program.cs @@ -52,6 +52,7 @@ static async Task Main(string[] args) await CalculateSize(); Console.WriteLine("Program terminated. Thanks for using it :D"); + Console.ReadLine(); } ///