How to read text file line by line by using StreamReader in VB.NET

1 Answer

0 votes
Imports System.IO

Module Module1

    Sub Main()

        Dim line As String
        Dim sr As New StreamReader("d:\\file.txt")

        While Not sr.EndOfStream
            line = sr.ReadLine()
            Console.WriteLine(line)
        End While

        sr.Dispose()
        sr.Close()

    End Sub


    ' run:
    ' 
    ' VB.NET language
    ' in the .NET Framework

End Module



answered Mar 29, 2015 by avibootz

Related questions

1 answer 217 views
1 answer 205 views
1 answer 222 views
2 answers 270 views
270 views asked Oct 24, 2018 by avibootz
1 answer 305 views
1 answer 291 views
...