Read text file to the file end : Text File Read « Stream File « VB.Net Tutorial






Imports System.IO


Public Class Tester
    Public Shared Sub Main
        Dim f As System.IO.FileStream
        Dim r As System.IO.StreamReader
        Dim mylength As Integer
        Dim i As Integer
        f = New System.IO.FileStream("test.txt", IO.FileMode.Open, IO.FileAccess.Read)
        r = New System.IO.StreamReader(f)
        Console.WriteLine(r.ReadToEnd())
        f.Close()
        r.Close()

    End Sub

End Class








13.20.Text File Read
13.20.1.FileSystem.ReadAllText
13.20.2.Use StreamReader to read text file
13.20.3.Read text file to the file end
13.20.4.Read text file content in Try Catch block
13.20.5.Read text file line by line