|
Quickstart Class Browser ... Class System.ConsoleKey
|
|
... returns true CanConvert( " f637a876-9d58-4229-9559-a5e42a95fdac " , typeof (Guid)); // returns true CanConvert( " Backspace " , typeof (System.ConsoleKey)); // returns true ...
|
|
CanConvert("Backspace", typeof(System.ConsoleKey)); // returns true CanConvert("10px", typeof(System.Web.UI.WebControls.Unit)); // returns true
|
|
... initialize vars pwd ="" EnterPressed = False # Read while input not ends while not EnterPressed: key = Console.ReadKey(True) if key.Key == System.ConsoleKey.Enter ...
|
|
249 309: ck=System.ConsoleKey : 250 310: while 1: 251 : e = System.Console.ReadKey(True) 311: try: 312: e = System.Console.ReadKey(True)
|
|
306 306: ck=System.ConsoleKey : 307 307: while 1: 308 : try: 309 : e = System.Console.ReadKey(True) 310 : except KeyboardInterrupt:
|
|
Name Description Console.ReadKey () ... System Namespace System.ConsoleKey KeyAvailable TreatControlCAsInput CancelKeyPress
|
|
|
|
Mono Class Library : System Namespace System.ConsoleKey Enumeration: Note: This namespace, class, or member is supported only in version .NET 2.0 ...
|
|
I poked around in the source and I found the ShortcutKey setting in clipmon32.exe.config. At http://msdn2.microsoft.com/en-us/library/system.consolekey.aspx , I found a table of ...
|