Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Currently following the HelloWorld Tutorial on the monotouch website.

I add the following code as per the tutorial:

        int ntaps = 0;
        button.TouchDown += delegate { 
            label.Text = "I have been tapped " (++ntaps) + " times";
        };

However, when I build I get this error in regards to line 3 of the code above: "Expression denotes a 'value', where a 'method group' was expected".

Any ideas what might be going wrong?

share|improve this question

2 Answers

up vote 3 down vote accepted

You're missing a plus operator in the string concatenation:

int ntaps = 0;
button.TouchDown += delegate { 
    label.Text = "I have been tapped " + (++ntaps) + " times";
};
share|improve this answer

You're missing the + after "I have been tapped ";

    int ntaps = 0;
    button.TouchDown += delegate { 
        label.Text = "I have been tapped " + (++ntaps) + " times";
    };
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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