XsBufferedFileStream.Write Method | |
Writes a block of bytes to the file stream.
Namespace:
XSharp.IO
Assembly:
XSharp.Core (in XSharp.Core.dll) Version: 2.19
Syntax VIRTUAL METHOD Write(
bytes AS BYTE[],
offset AS LONG,
count AS LONG
) AS VOID
public override void Write(
byte[] bytes,
int offset,
int count
)
Request Example
View SourceParameters
- bytes
- Type: Byte
- offset
- Type: Long
The zero-based byte offset in array from which to begin copying bytes to the stream. - count
- Type: Long
The maximum number of bytes to write.
Exceptions Remarks This method overrides the normal behavior of the FileStream class and writed the data to an inmemory cache, when possible
See Also