1234567891011121314151617181920212223242526272829303132333435363738 |
- .. _func_streams_loadstring:
- ==========
- LoadString
- ==========
- LoadString -
- Description
- ===========
- .. code-block:: blitzmax
- LoadString$( url:Object )
- Load a String from a stream
- The specified @url is opened for reading, and each byte in the resultant stream
- (until eof of file is reached) is read into a string.
- A #TStreamReadException is thrown if the stream could not be read.
- Parameters
- ==========
- Return Values
- =============
- A String
- Examples
- ========
- See Also
- ========
|