Streams and LineInput

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a stream of XML that I need to read one line at a time. Rather than
writing it out to disk and then reading it back in with LineInput, I was
wondering if there's a similar way of doing this with a stream.
 
AlBruAn said:
I have a stream of XML that I need to read one line at a time. Rather than
writing it out to disk and then reading it back in with LineInput, I was
wondering if there's a similar way of doing this with a stream.

Take a look at 'System.IO.StreamReader', which seems to be exactly what you
are looking for.
 
Back
Top