System::IO::Stream::Write 方法

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

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

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

另见

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

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

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

另见

Stream::Write(const System::Details::StackArray<uint8_t, N>&, int32_t, int32_t) method

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

template<std::size_t> void System::IO::Stream::Write(const System::Details::StackArray<uint8_t, N> &buffer, int32_t offset, int32_t count)
Parameter描述
N堆栈数组的大小
ParameterType描述
缓冲区const System::Details::StackArray<uint8_t, N>&包含待写入字节的栈数组
offsetint32_tbuffer 中子范围写入开始位置的 0 基索引
countint32_t要写入的子范围中的元素数量

另见