How to read a text file into a list in VB.NET

1 Answer

0 votes
Imports System.IO

Module Module1

    Sub Main()

        Dim list As New List(Of String)

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

            line = sr.ReadLine
            Do While (Not line Is Nothing)
                list.Add(line)
                Console.WriteLine(line)
                line = sr.ReadLine
            Loop
        End Using

    End Sub


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

End Module



answered Apr 2, 2015 by avibootz

Related questions

1 answer 303 views
1 answer 291 views
1 answer 226 views
2 answers 270 views
270 views asked Oct 24, 2018 by avibootz
1 answer 216 views
1 answer 219 views
1 answer 553 views
...