Java.IO.PushbackReader.Unread Method
Pushes the specified character oneChar back to this reader.

Syntax

[Android.Runtime.Register("unread", "(I)V", "GetUnread_IHandler")]
public virtual void Unread (int oneChar)

Parameters

oneChar
the character to push back to this stream.

Exceptions

TypeReason
Java.IO.IOExceptionif this reader is closed or the internal pushback buffer is full.

Remarks

Pushes the specified character oneChar back to this reader. This is done in such a way that the next character read from this reader is (char) oneChar.

If this reader's internal pushback buffer cannot store the character, an IOException is thrown.

[Android Documentation]

Requirements

Namespace: Java.IO
Assembly: Mono.Android (in Mono.Android.dll)
Assembly Versions: 0.0.0.0
Since: Added in API level 1