我很抱歉問。但我是C#的新手。需要幫助代碼不起作用
我的代碼有問題(Visual Studio告訴我這個)。但我找不到什麼是錯的。
你能幫我嗎?
我只是在嘗試一些簡單的互動遊戲。
namespace FSociety
{
public partial class Form2 : Form
{
public Form2()
{
InitializeComponent();
}
private void textBox1_TextChanged(object sender, EventArgs e)
{
}
private void button1_Click(object sender, EventArgs e)
{
if (textBox1.Text == "root"
&& textBox2.Text == "toor") ;
{
progressBar1.Increment(100);
**}**
else
{
MessageBox.Show("Wrong username or password");
}
}
}
}
加粗}的Visual Studio後告訴我期望}
但它已經在那裏,當我再添加一個我有一個5個錯誤。
請幫忙。
謝謝。
除了別的,你在'&& textBox2.Text ==「toor」)之後有一個流氓'''' –
如果這就是你所有的代碼,你肯定需要這個支架。那麼當你把它放進去時會得到什麼樣的錯誤?拿出分號應該修復它。 –