File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ internal class Program
99 private static void Main ( )
1010 {
1111 Action < string > display = Console . WriteLine ;
12- Console . ForegroundColor = ConsoleColor . Magenta ;
12+ Console . ForegroundColor = ConsoleColor . White ;
1313 display ( "Checking if there are new images to be copied..." ) ;
1414 List < string > files = new List < string > ( ) ;
1515 int counter = 0 ;
@@ -44,9 +44,11 @@ private static void Main()
4444 {
4545 Console . ForegroundColor = ConsoleColor . Green ;
4646 }
47-
47+
48+ display ( string . Empty ) ;
4849 display ( $ "{ counter } image{ Plural ( counter ) } { Plural ( counter , "have" ) } been copied to the picture folder.") ;
49- Console . ForegroundColor = ConsoleColor . Blue ;
50+ display ( string . Empty ) ;
51+ Console . ForegroundColor = ConsoleColor . Yellow ;
5052 display ( "Press any key to exit:" ) ;
5153 Console . ReadKey ( ) ; // comment for batch to production
5254 }
You can’t perform that action at this time.
0 commit comments