I am stuck.
How do I convert the Action to an Action in C#?
Action to an Action
Regards Magnus
Not sure what you mean by converting... Action is the generic declaration of an action delegate... if you want an action delegate that works on 'object' you would do something like:
var myAction = new Action(obj=> ... );