XsWin32FileStream.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 calls the Windows WriteFile() function directly.
See Also