我有一个以“a a”作为用户名和密码的clients.txt 文件。如果我没记错的话,这应该从中读取并告诉我它们是否存在于文件中。
编辑:在clients.txt文件的第二行我有“b b”作为用户名和密码,它们工作正常。
图片在这里:(新用户不能发布图片)
StreamReader sr = new StreamReader("clients.txt");
int findIndex = -1;
string userpass = "#";
while (findIndex == -1 && sr.ReadLine() != null)
{
findIndex = userpass.IndexOf(txtUserName.Text + " " + txtPassword.Password);
userpass = sr.ReadLine();
}
sr.Close();