myTest.Read C# (CSharp) Method

Read() public method

public Read ( ) : int
return int
	public override int Read ()
	{
		return ReadChar ();
	}

Usage Example

Exemplo n.º 1
0
Arquivo: test.cs Projeto: mono/gert
	static int Main (string [] args)
	{
		myTest test = new myTest ();
		if (test.Read () != 1)
			return 1;
		return 0;
	}