Skip to content

Latest commit

 

History

History
24 lines (16 loc) · 700 Bytes

File metadata and controls

24 lines (16 loc) · 700 Bytes

ZeroStream.Write method

Writes a sequence of bytes to the current stream and advances the current position within this stream by the number of bytes written.

public override void Write(byte[] buffer, int offset, int count)
parameter description
buffer The source array.
offset The zero-based byte offset in the buffer.
count The number of bytes to be written to the current stream.

Remarks

The bytes are not actually stored and will be read as zeroes.

See Also