1234567891011121314151617181920212223242526272829303132333435363738 |
- .. _func_streams_savebytearray:
- =============
- SaveByteArray
- =============
- SaveByteArray -
- Description
- ===========
- .. code-block:: blitzmax
- SaveByteArray( byteArray:Byte[],url:Object )
- Save a Byte array to a stream
- The specified @url is opened For writing, and each element of @byteArray is written to the
- resultant stream.
- A #TStreamWriteException is thrown if not all bytes could be written.
- Parameters
- ==========
- Return Values
- =============
- Nothing.
- Examples
- ========
- See Also
- ========
|