ReadLine() public static method

public static ReadLine ( ) : string
return string
コード例 #1
0
ファイル: Console.cs プロジェクト: vernon016/mono
		public static string ReadLine ()
		{
			if ((stdin is CStreamReader) && ConsoleDriver.IsConsole) {
				return ConsoleDriver.ReadLine ();
			} else {
				return stdin.ReadLine ();
			}
		}