I\'m porting working code from .NET4 to .NET2 (a WinCE device).
The usage of Action taking no arguments and returning no value isn\'t allowed in .NET2
com
Indeed, the non-generic Action was added in .NET 3.5.
Action
However, Action is just an ordinary delegate type, so you could simply roll your own, like so:
public delegate void Action();