Legend

Class
Struct
Enum
Interface
Delegate
Constructor
Method
Property
Event
Field

Method: void Write(byte[], int, int)

  • Declared in: RT.Util.Streams.BinaryStream
  • Overrides: Stream.Write(byte[], int, int)

Declaration

public override void Write(
    byte[] buffer,
    int offset,
    int count
)

Summary

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

Parameters

byte[]bufferAn array of bytes. This method copies count bytes from buffer to the underlying stream.
intoffsetThe zero-based byte offset in buffer at which to begin copying bytes to the underlying stream.
intcountThe number of bytes to be written to the underlying stream.