Write Method
Write(Byte[])
Writes the content of the provided byte array to this serialization output
Declaration
void Write(byte[] bytes)
Parameters
Byte[] | bytes | the byte array to be written |
Remarks
Please note that this method only writes the content of the array to the output whereas WriteByteArray(Byte[]) methods also take care of the size of the array.
Write(Byte[], Int32, Int32)
Writes the content of the provided byte array to this serialization output
Declaration
void Write(byte[] bytes, int offset, int count)
Parameters
Byte[] | bytes | the byte array to be written |
Int32 | offset | the offset of the bytes array for start reading from |
Int32 | count | total number of bytes to be written from the bytes array |