Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
3answers
2k views

What is the difference between File.ReadAllLines() and File.ReadAllText()?

What is the difference between File.ReadAllLines() and File.ReadAllText()? Thank you very much.
0
votes
1answer
124 views

Relative path on File.ReadAllLines method

My code access a file which is in "Conf" directory inside my project directory. I am currently opening the file using absolute path like below: File.ReadAllLines("C:\project name\Conf\filename"); I ...
0
votes
1answer
179 views

detecting/preventing error/deadlock when opening/reading text file

I am reading file with text contents on it. sample dictionary.txt contents: aa abaca abroad apple Snippet A: Dim path as String = Server.MapPath("dictionary.txt"); Dim dictionary() ...