Writes a len bytes from an array to the compressed stream.
[Visual Basic]
Overrides Public Sub Write( _
ByVal buf As Byte(), _
ByVal off As Integer, _
ByVal len As Integer _
)
[C#]
public override void Write(
byte[] buf,
int off,
int len
);
Parameters
buf
the byte array.
off
the offset into the byte array where to start.
len
the number of bytes to write.
See Also
DeflaterOutputStream Class | DeflaterOutputStream Members | ICSharpCode.SharpZipLib.Zip.Compression.Streams Namespace