每次按下按钮都会增加数组值?
我正在用 C# 构建一个计算器。 我不确定最好的方法是什么,让它在每次按下按钮时增加数组中的数字。 这是我当前的按钮事件处理程序方法之一:
//Assign button '2' to 2 with array address of 1
private void num2_Click(object sender, EventArgs e)
{
numbers[1] = 2;
lblUpdate(1);
}
我希望每次按下此按钮时,数字 [1] 都会增加 2。现在,无论按下按钮多少次,它都会设置为 2 。
非常感谢!
I am building a calculator in C#.
I am not sure what the best way is to have it increment a number in an array every time the button is pressed. Here is one of my current button event handler methods:
//Assign button '2' to 2 with array address of 1
private void num2_Click(object sender, EventArgs e)
{
numbers[1] = 2;
lblUpdate(1);
}
I would like it so every time this button is pressed, numbers[1] gets increased by 2. Right now, it just gets set to 2 no matter how many times the button is pressed.
Thanks so much!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
数字[1] += 2;
这应该够了吧。
numbers[1] += 2;
That should do the trick.
数字[1] += 2;
numbers[1] += 2;