lundi 4 mai 2020

Why does this syntax produce an error in the "else" clause? [closed]

        {

            if (KullanıcıAdı == reader["KullanıcıAdı"] && şifre == reader["şifre"]);
            {
                isThere = true;
                break;
            }

            else
            {
                isThere = false;
            }

        } 

else gives an error. What is the correct syntax?

Aucun commentaire:

Enregistrer un commentaire