System.ConsoleDriver.ReadKey C# (CSharp) Méthode

ReadKey() public static méthode

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

Usage Example

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