So what i want to do is search the first 2 lines from my file which are going to be the username and password.

These will be strings saved from my program, how could i just read the first two lines?

link|improve this question

30% accept rate
8  
Call ReadLine twice. And find a better mechanism for storing a username and password. – Anthony Pegram Feb 24 at 23:56
Why was this question marked down? SO isn't for noobs? – bbqchickenrobot Feb 24 at 23:59
4  
@bbqchickenrobot: It was downvoted because it's a ridiculously easy question that could have been solved by about 30 seconds spent after Google. What's worse, is when people upvote this type of question. – minitech Feb 25 at 0:00
5  
@minitech "when people upvote .. " - or answer ... – Henk Holterman Feb 25 at 0:02
@HenkHolterman: Nah, it'll get deleted, you can count on that - either that or this will be the new Google solution. Not important, anyway - I'll still give the answer. It's just not a good question. – minitech Feb 25 at 0:04
show 1 more comment
feedback

2 Answers

up vote 4 down vote accepted

Use a System.IO.StreamReader.

string line1, line2;

using(StreamReader reader = new StreamReader("myFile.txt")) {
    line1 = reader.ReadLine();
    line2 = reader.ReadLine();
}

Also, I hope this isn't a serious username and password. Keeping them in plaintext isn't safe.

link|improve this answer
Thanks, yeah its just a private bot thing – Oliver Kucharzewski Feb 25 at 0:11
feedback

For that use StreamReader.ReadLine()

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.