我刚开始学习 c#,我遇到了一些令人困惑的事情,我希望有人能给我解释一下:)
namespace WindowsFormsApplication4
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
int Md = 0;
private void cmdAnzeigen1_Click(object sender, EventArgs e)
{
int x = 0;
Md = Md + 1;
x = x + 1;
lblErgebnis.Text = "x: " + x + "\n" + "Gx:" + Md;
}
}
}
为什么Md
总是增加 1,但x
不(保持在 1)?我不明白,它们都是相同的变量。