Read lines from a text file : Text File Read « File Directory « VB.Net






Read lines from a text file

 

Imports System
Imports System.IO

Public Class TextFromFile
    Public Shared Sub Main()
        Using sr As StreamReader = File.OpenText("MyFile.txt")
            Dim input As String
            Do
                input = sr.ReadLine()
                If Not (input Is Nothing) Then
                    Console.WriteLine(input)
                End If
            Loop Until input Is Nothing
            Console.WriteLine ("The end of the stream has been reached.")
        End Using
    End Sub
End Class

   
  








Related examples in the same category

1.Read Text File ContentRead Text File Content
2.Open Text file and count the lines
3.Read Text File in a single StatementRead Text File in a single Statement
4.Text File content outputText File content output
5.Read and Write Files
6.Read Text from a File
7.Open text file to read
8.Read Text from a File
9.Read line by line from a text file
10.Read Text from a File with DO Until