ReadKey() public static method

public static ReadKey ( bool intercept ) : ConsoleKeyInfo
intercept bool
return ConsoleKeyInfo
Example #1
0
 public static ConsoleKeyInfo ReadKey(bool intercept)
 {
     return(ConsolePal.ReadKey(intercept));
 }
Example #2
0
 public static ConsoleKeyInfo ReadKey()
 {
     return(ConsolePal.ReadKey(false));
 }