How to read all text file lines in VB.NET

2 Answers

0 votes
Module Module1

    Sub Main()
        For Each line As String In File.ReadAllLines("d:\negative_keywords.txt")
            Console.WriteLine(line)
        Next
    End Sub

End Module


' run:
' 
' case study
' close out
' control panel
' free download
' success story
' ...

 



answered Oct 24, 2018 by avibootz
edited Oct 24, 2018 by avibootz
0 votes
Module Module1

    Sub Main()
        Dim allLines() As String = File.ReadAllLines("d:\negative_keywords.txt")

        For Each line As String In allLines
            Console.WriteLine(line)
        Next
    End Sub

End Module


' run:
' 
' case study
' close out
' control panel
' free download
' success story
' ...

 



answered Oct 24, 2018 by avibootz

Related questions

1 answer 327 views
1 answer 310 views
1 answer 566 views
1 answer 216 views
1 answer 294 views
1 answer 205 views
2 answers 270 views
...