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 303 views
1 answer 291 views
1 answer 553 views
1 answer 194 views
1 answer 276 views
1 answer 178 views
2 answers 254 views
...