"Method name expected" error when trying add a handler method to a delegate - C#
- by zakplayyy
I keep getting the error "Method name expected" when trying add the a method to a delegate. I have a delegate which is invoked when ever my game ends. The function I'm trying to add to the delegate stops a countdown from flashing (the method is in a static class). I've searched about and I'm still unsure why its not working. Here is the line causing the error:
LivesManager.gameEnded += new LivesManager.EndGame(CountdownManager.DisableFlashTimer(this));
The this passes the current form to the method so it can disable the timer flash on the form.
I have added methods from static classes to the same delegate before and it works fine, the only difference is that I'm passing the form as a paramater and then it doesn't like it.
Is there any way to pass the form to the method without the error?
Thanks in advance :)