diff options
author | emkael <emkael@tlen.pl> | 2016-05-23 22:40:41 +0200 |
---|---|---|
committer | emkael <emkael@tlen.pl> | 2016-05-23 22:40:41 +0200 |
commit | 07a273bf4d24cdf49521c9ca3c4c88662754e836 (patch) | |
tree | dcd8110c16203e1e153df7f0ed90e8ae5f754350 | |
parent | 7454b56a82ee67c50f65281fe11463309ff5f2a0 (diff) |
* readkey instead of readline at the end
-rw-r--r-- | Program.cs | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -88,7 +88,7 @@ namespace BCDD }
}
Console.WriteLine("Press any key to continue...");
- Console.ReadLine();
+ Console.ReadKey();
}
}
}
|