File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -118,7 +118,7 @@ private static void Main()
118118 consoleKeyPressed = Console . ReadKey ( ) ;
119119 // Check every 24 hours
120120 //Thread.Sleep(5000);
121- if ( consoleKeyPressed . ToString ( ) == "Q" )
121+ if ( consoleKeyPressed . ToString ( ) . ToUpper ( ) == "Q" )
122122 {
123123 break ;
124124 }
@@ -143,9 +143,9 @@ private static void Main()
143143
144144 } while ( consoleKeyPressed . Key != ConsoleKey . Q ) ;
145145
146- Console . ForegroundColor = ConsoleColor . Yellow ;
147- display ( "Press any key to exit:" ) ;
148- Console . ReadKey ( ) ; // comment for batch to production
146+ // Console.ForegroundColor = ConsoleColor.Yellow;
147+ // display("Press any key to exit:");
148+ // Console.ReadKey(); // comment for batch to production
149149 }
150150
151151 private static string DisplayTitle ( )
You can’t perform that action at this time.
0 commit comments