System::IO::FileStream::Write method
FileStream::Write(const ArrayPtr<uint8_t>&, int32_t, int32_t) method
将指定字节数组中的指定子范围字节写入流。
void System::IO::FileStream::Write(const ArrayPtr<uint8_t> &buffer, int32_t offset, int32_t count) override
| Parameter | Type | 描述 |
|---|---|---|
| 缓冲区 | const ArrayPtr<uint8_t>& | 包含要写入字节的数组。 |
| offset | int32_t | 在 buffer 中子范围写入开始位置的 0 基索引。 |
| count | int32_t | 要写入的子范围中元素的数量。 |
另见
- Typedef ArrayPtr
- Class FileStream
- Namespace System::IO
- Library Aspose.Page for C++
FileStream::Write(const System::Details::ArrayView<uint8_t>&, int32_t, int32_t) method
将指定字节数组中的指定子范围字节写入流。
void System::IO::FileStream::Write(const System::Details::ArrayView<uint8_t> &buffer, int32_t offset, int32_t count) override
| Parameter | Type | 描述 |
|---|---|---|
| 缓冲区 | const System::Details::ArrayView<uint8_t>& | 包含要写入字节的数组视图。 |
| offset | int32_t | 在 buffer 中子范围写入开始位置的 0 基索引。 |
| count | int32_t | 要写入的子范围中元素的数量。 |
另见
- Class FileStream
- Namespace System::IO
- Library Aspose.Page for C++