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

ReadLine() public static méthode

public static ReadLine ( ) : string
Résultat string
		public static string ReadLine ()
		{
			return driver.ReadLine ();
		}

Usage Example

Exemple #1
0
		public static string ReadLine ()
		{
			if ((stdin is CStreamReader) && ConsoleDriver.IsConsole) {
				return ConsoleDriver.ReadLine ();
			} else {
				return stdin.ReadLine ();
			}
		}