System::IO::MemoryStream::Write 方法

MemoryStream::Write(const ArrayPtr<uint8_t>&, int32_t, int32_t) method

将指定字节数组中的指定子范围字节写入流。

void System::IO::MemoryStream::Write(const ArrayPtr<uint8_t> &buffer, int32_t offset, int32_t count) override
ParameterType描述
缓冲区const ArrayPtr<uint8_t>&包含要写入字节的数组
offsetint32_tbuffer 中子范围写入开始的基于 0 的索引
countint32_t要写入的子范围中的元素数量

另见

MemoryStream::Write(const System::Details::ArrayView<uint8_t>&, int32_t, int32_t) method

将指定字节数组中的指定子范围字节写入流。

void System::IO::MemoryStream::Write(const System::Details::ArrayView<uint8_t> &buffer, int32_t offset, int32_t count) override
ParameterType描述
缓冲区const System::Details::ArrayView<uint8_t>&包含要写入的字节的数组视图
offsetint32_tbuffer 中子范围写入开始的基于 0 的索引
countint32_t要写入的子范围中的元素数量

另见