ユーザー名とパスワードとして「a a」を含むclients.txtファイルがあります。私が間違っていなければ、これはそれから読み取られ、それらがファイルに存在するかどうかを教えてくれるはずです。
編集:clients.txtファイルの2行目に、ユーザー名とパスワードとして「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();