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 325 views
1 answer 305 views
1 answer 236 views
2 answers 287 views
287 views asked Oct 24, 2018 by avibootz
1 answer 231 views
1 answer 232 views
1 answer 565 views
...