String to Stream?
BlitzMax Forums/BlitzMax Programming/String to Stream?
| ||
| Is it possible to convert a string into a stream? I'd like to OpenStream and read something memory. |
| ||
| Banks. A bank is an allocated block of memory that you can read/write to directly. |
| ||
Boom! Thanks :)
Local b:TBank = LoadBank("test.txt")
Local st:TStream = CreateBankStream(b)
While Not Eof(st)
Print ReadLine(st)
Wend
|