BinaryWriter.Write Method (Byte[], Int32, Int32)
May 02, 2013
Writes a region of a byte array to the current stream.
Assembly: mscorlib (in mscorlib.dll)
Parameters
- buffer
- Type:
System.Byte
[]
A byte array containing the data to write.
- index
- Type: System.Int32
The starting point in buffer at which to begin writing.
- count
- Type: System.Int32
The number of bytes to write.
| Exception | Condition |
|---|---|
| ArgumentException | The buffer length minus index is less than count. |
| ArgumentNullException | buffer is null. |
| ArgumentOutOfRangeException | index or count is negative. |
| IOException | An I/O error occurs. |
| ObjectDisposedException | The stream is closed. |