We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e8ae4b8 commit 6048bfaCopy full SHA for 6048bfa
1 file changed
SaveWin10Pictures/Program.cs
@@ -118,7 +118,7 @@ private static void Main()
118
consoleKeyPressed = Console.ReadKey();
119
// Check every 24 hours
120
//Thread.Sleep(5000);
121
- if (consoleKeyPressed.ToString() == "Q")
+ if (consoleKeyPressed.ToString().ToUpper() == "Q")
122
{
123
break;
124
}
@@ -143,9 +143,9 @@ private static void Main()
143
144
} while (consoleKeyPressed.Key != ConsoleKey.Q);
145
146
- Console.ForegroundColor = ConsoleColor.Yellow;
147
- display("Press any key to exit:");
148
- Console.ReadKey(); // comment for batch to production
+ //Console.ForegroundColor = ConsoleColor.Yellow;
+ //display("Press any key to exit:");
+ //Console.ReadKey(); // comment for batch to production
149
150
151
private static string DisplayTitle()
0 commit comments