Read() public static method

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