System.IO.CStreamReader.Read C# (CSharp) Méthode

Read() public méthode

public Read ( ) : int
Résultat int
		public override int Read ()
		{
			try {
				ConsoleKeyInfo key = Console.ReadKey ();
				return key.KeyChar;
			} catch (IOException) {
			}

			return(-1);
		}

Same methods

CStreamReader::Read ( [ dest, int index, int count ) : int