BinaryReader.ReadSByte Method

Definition

Important

This API is not CLS-compliant.

Reads a signed byte from this stream and advances the current position of the stream by one byte.

public:
 virtual System::SByte ReadSByte();
[System.CLSCompliant(false)]
public virtual sbyte ReadSByte ();
[<System.CLSCompliant(false)>]
abstract member ReadSByte : unit -> sbyte
override this.ReadSByte : unit -> sbyte
Public Overridable Function ReadSByte () As SByte

Returns

A signed byte read from the current stream.

Attributes

Exceptions

The end of the stream is reached.

The stream is closed.

An I/O error occurred.

Remarks

BinaryReader does not restore the file position after an unsuccessful read.

For a list of common I/O tasks, see Common I/O Tasks.

Applies to

See also