S
spowel4
I am using streamreader.readline to read in data from a file line by
line but I need to be able to check for the end of each line, how can
I accomplish that using streamreader.readline or is there a better
way?
My code thus far:
reader1 = File.OpenText(Application.StartupPath & "\filename")
While Not reader1.EndOfStream
fileContents = reader1.ReadLine
output = fileContents.Split(",")
While <condition to check for end of line>
------------------------------
line but I need to be able to check for the end of each line, how can
I accomplish that using streamreader.readline or is there a better
way?
My code thus far:
reader1 = File.OpenText(Application.StartupPath & "\filename")
While Not reader1.EndOfStream
fileContents = reader1.ReadLine
output = fileContents.Split(",")
While <condition to check for end of line>
------------------------------