hi guys me again with another c# prob
well basically i’am haveing probs with my “else” part here it is
string messageText;
string PlayerName;
string firstName;
firstName = textBox1.Text;
PlayerName = textBox2.Text;
if (firstName == "Chocolate")
MessageBox.Show("Password accepted");
MessageBox.Show(PlayerName);
**else**
MessageBox.Show("Password not accepted");
(put the stars around the else to make it more visable)(if this is a duplicated question sorry but i coudn’t find one colsely related one so i decided to make my own question)