From 05ab3657c2b2a032178523c4f90af4a38d49ed61 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Pedro?= Date: Sun, 17 Sep 2017 20:04:07 +0100 Subject: [PATCH] Fixed Console.ReadKey. --- source/Cosmos.System2_Plugs/System/ConsoleImpl.cs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/source/Cosmos.System2_Plugs/System/ConsoleImpl.cs b/source/Cosmos.System2_Plugs/System/ConsoleImpl.cs index 8ee1c2b47..a5b8ba6c4 100644 --- a/source/Cosmos.System2_Plugs/System/ConsoleImpl.cs +++ b/source/Cosmos.System2_Plugs/System/ConsoleImpl.cs @@ -393,6 +393,11 @@ namespace Cosmos.System_Plugs.System } } + public static ConsoleKeyInfo ReadKey() + { + return ReadKey(false); + } + // ReadKey() pure CIL public static ConsoleKeyInfo ReadKey(bool intercept)