Fixed Console.ReadKey.

This commit is contained in:
José Pedro 2017-09-17 20:04:07 +01:00
parent 3e5aff9463
commit 05ab3657c2

View file

@ -393,6 +393,11 @@ namespace Cosmos.System_Plugs.System
} }
} }
public static ConsoleKeyInfo ReadKey()
{
return ReadKey(false);
}
// ReadKey() pure CIL // ReadKey() pure CIL
public static ConsoleKeyInfo ReadKey(bool intercept) public static ConsoleKeyInfo ReadKey(bool intercept)