Click or drag to resize
BinaryWriterWrite Method (Byte)
Writes an unsigned byte to the current stream and advances the stream position by one byte.

Namespace: System.IO
Assembly: mscorlib (in mscorlib.dll) Version: 4.0.0.0
Syntax
C#
public virtual void Write(
	byte value
)

Parameters

value
Type: SystemByte
The unsigned byte to write.
Exceptions
ExceptionCondition
IOExceptionAn I/O error occurs.
ObjectDisposedExceptionThe stream is closed.
See Also