[]
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[] buf, int offset, int count)
| Type | Name | Description |
|---|---|---|
| byte[] | buf | An array of bytes. This method copies |
| int | offset | The zero-based byte offset in |
| int | count | The number of bytes to be written to the current stream. |
The data is compressed as it is written into the stream. Writing count bytes
into the stream will usually advance the position by a number smaller than count.