vote up 2 vote down star

I see this line in many online examples of using the Action delegate:

public event Action MyEvent;

But when I try it in my own code, I get this the error

Using the generic type 'System.Action' requires '1' type arguments

The documentation certainly describes a form of Action without any type parameter. What am I missing?

flag

58% accept rate
1  
Not an answer to the question, but you shouldn't use an Action for an event. Use either EventHandler or EventHandler<T> as the delegate for events. – Greg Beech Feb 27 at 1:46

2 Answers

vote up 5 vote down check

Make sure your application is referencing System.Core.

Edit - also make sure you are targeting .NET 3.5 as the System.Core.dll is part of that version.

link|flag
And is .NET 3.5... – Simon Buchan Feb 27 at 1:41
Thanks! I did not have a System.Core reference. Even knowing the answer, I still could not find it in the docs. – I. J. Kennedy Feb 27 at 1:49
vote up 2 vote down

Expanding on Andrews answer.

It's perfectly legal to use Action in a non-3.5 scenario. Simply define it yourself.

public delegate void Action();
link|flag
+1 very good point. – Andrew Hare Feb 27 at 3:52
Unless you are passing it to someone elses library, that is using System.Core's Action... – Simon Buchan Feb 27 at 4:29
1  
@Simon, in that case you must already be using 3.5 (directly or indirectly) so it's not an issue. – JaredPar Feb 27 at 4:33

Your Answer

Get an OpenID
or

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