System.ConsoleDriver.ReadKey C# (CSharp) Method

ReadKey() public static method

public static ReadKey ( bool intercept ) : ConsoleKeyInfo
intercept bool
return ConsoleKeyInfo
		public static ConsoleKeyInfo ReadKey (bool intercept)
		{
			return driver.ReadKey (intercept);
		}

Usage Example

Esempio n. 1
0
 public static ConsoleKeyInfo ReadKey(bool intercept)
 {
     return(ConsoleDriver.ReadKey(intercept));
 }