I just saw a brand-new video on the Rx framework, and one particular signature caught my eye:

Scheduler.schedule(this IScheduler, Action<Action>)

At 23:55, Bart de Smet says:

The earliest version would be Action of Action.

If Action is a parameterized type, how can it appear unparameterized inside the angle brackets again? Wouldn't it have to be Action<Action<Action<...>>> ad infinitum, which is obviously impossible?

link|improve this question

10  
Isn't there a non-generic Action type as well? That would explain it :) – jalf Jun 29 '11 at 18:11
3  
aww, now I feel stupid I didn't make that an answer – jalf Jun 29 '11 at 18:13
2  
If you really want a type that bakes your noodle, play around with "delegate D D(D d);" for a bit and see what you can do. – Eric Lippert Jun 29 '11 at 18:20
feedback

5 Answers

up vote 3 down vote accepted

Action has several overloads. One is non-generic, the others take one, two, three, etc. type parameters. Suppose they had different names, the one-argument version being called Action1, and the zero-argument (non-generic) being called Action0, then the example would be Action1<Action0>.

link|improve this answer
@pst Please take more care in future when editing other people's answers. You deleted half of my text. – Daniel Earwicker Jun 29 '11 at 22:53
I did not. If text was deleted it was a concurrency failure on the part of SO (is optimistic concurrency working/employed?). I apologize for the inconvenience. – pst Jun 30 '11 at 4:25
SO is optimistic about the care taken by its users. Apparently too optimistic. – Daniel Earwicker Jun 30 '11 at 7:53
It's hard to tell if a change has be "lost" because of concurrency issues without an optimistic guard. If you have a problem, please take it to meta. – pst Jun 30 '11 at 15:20
feedback

Action<T> describes a delegate that takes a single parameter of type T. Action describes a delegate that takes no parameters.

See http://msdn.microsoft.com/en-us/library/system.action.aspx

link|improve this answer
feedback

From MSDN:

Action example

Action showMethod = () => { Console.WriteLine("Line"); };

showMethod();

Action<T> example

Action<int> showMethod = (i) => { Console.WriteLine("Line {0}", i); };

showMethod(1);
link|improve this answer
feedback

Action has a non-generic version with the signature:

public delegate void Action();

So it is an Action that takes an Action of type void. Looks funny, but is perfectly valid.

link|improve this answer
It's an Action that takes a parameter of type Action, not an Action that returns an Action. An example would be: Action doSomething = (someMethod) => someMethod(); – bdowden Jun 29 '11 at 19:04
dbowden, actually your example would be an Action<T> rather than the non-generic Action. To make your example into the non-generic version, change it to Action doSomething = () => someMethod(); – Jim Wooley Jun 30 '11 at 13:49
@bdowden, you are correct, I got my words mixed up. I edited the post, thanks. – jscharf Jul 4 '11 at 23:20
feedback

Default parameter seems like the easy solution here.

link|improve this answer
Default parameter of what...? :( – pst Jun 29 '11 at 18:12
feedback

Your Answer

 
or
required, but never shown

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