I have a Button and I need to fire it's Click event externally from actually clicking it. However, the code
myButton.Click(this, EventArgs.Empty);
gives me the error
The event 'System.Windows.Forms.Control.Click' can only appear on the left hand side of += or -=
How can I fix it?