How can I read just the first two lines of a file my program saves? (They represent a username and a password.)
Use a System.IO.StreamReader
.
string line1, line2;
using (StreamReader reader = new StreamReader("myFile.txt")) {
line1 = reader.ReadLine();
line2 = reader.ReadLine();
}
Or, for something modern:
var lines = File.ReadLines("myFile.txt").Take(2).ToArray();
For that use StreamReader.ReadLine()
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With