vote up 0 vote down star

Hi, 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!

flag

4 Answers

vote up 3 vote down check
numbers[1] += 2;
link|flag
vote up 3 vote down

numbers[1] += 2;

That should do the trick.

link|flag
vote up 3 vote down

numbers[1] += 2;

link|flag
vote up 0 vote down

ah haha I feel stupid. Worked! Thanks guys!

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.