Write

Write(byte[])

将所有指定字节写入流。

public override void Write(byte[] bytes)
范围类型描述
bytesByte[]要写入的字节。

也可以看看


Write(byte[], int, int)

将字节序列写入当前流,并将该流中的当前位置前进写入的字节数。

public override void Write(byte[] buffer, int offset, int count)
范围类型描述
bufferByte[]一个字节数组。此方法复制count来自的字节buffer到当前流。
offsetInt32从零开始的字节偏移量buffer开始将字节复制到当前流的位置。
countInt32要写入当前流的字节数。

也可以看看