I use streamReader to read files from hard drive. Some files which I read
have spaces at the end of line. However whatever code I use
StreamReader1 = System.IO.File. OpenText(file)
or
StreamReader1 = New System.IO.Strea mReader(file)
and then
StreamReader1.R eadToEnd()
or
StreamReader1.R eadLine()
I am losing spaces in the response. What I need to change to read all data.
Aleks Kleyn
have spaces at the end of line. However whatever code I use
StreamReader1 = System.IO.File. OpenText(file)
or
StreamReader1 = New System.IO.Strea mReader(file)
and then
StreamReader1.R eadToEnd()
or
StreamReader1.R eadLine()
I am losing spaces in the response. What I need to change to read all data.
Aleks Kleyn
Comment