Using 2005 vb.net is there a way I can get the current line number of a streamreader. I guess I could just have my own counter and + 1 within the loop but is there a way to obtain from a property?
This is sort of what I have ...
Thanks
-----------noddy code
Dim FilReader As System.IO.StreamReader
FilReader = My.Computer.FileSystem.OpenTextFileReader(myFile)
Dim FilRow As String
While FilReader.EndOfStream = False
FilRow = FilReader.ReadLine()
'do stuff
'what line number am I on?
End While
This is sort of what I have ...
Thanks
-----------noddy code
Dim FilReader As System.IO.StreamReader
FilReader = My.Computer.FileSystem.OpenTextFileReader(myFile)
Dim FilRow As String
While FilReader.EndOfStream = False
FilRow = FilReader.ReadLine()
'do stuff
'what line number am I on?
End While