From 594f542ee04721b2b5372d5cd299e50c04623237 Mon Sep 17 00:00:00 2001 From: "g.isachenko" Date: Sat, 8 Feb 2020 18:09:56 +0200 Subject: [PATCH] Add waiting for user input after program has run --- nice-project/Program.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/nice-project/Program.cs b/nice-project/Program.cs index 5da6ef6..5f86d96 100644 --- a/nice-project/Program.cs +++ b/nice-project/Program.cs @@ -14,6 +14,9 @@ static void Main(string[] args) var result = stuff.DoWhatNeedsToBeDone(fileReader); Console.WriteLine($"Result is {result}"); + + // Wait for input + Console.ReadLine(); } } } \ No newline at end of file