myTest.Read C# (CSharp) Method

Read() public method

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

Usage Example

コード例 #1
0
ファイル: test.cs プロジェクト: mono/gert
	static int Main (string [] args)
	{
		myTest test = new myTest ();
		if (test.Read () != 1)
			return 1;
		return 0;
	}