Possible Duplicate:
C# 2.0 generics: How to create an Action object with zero parameters
I use code to delegate method like this:
this.Invoke((Action)(() => importProcessExited()));
And I'm getting an error:
Using the generic type 'System.Action' requires 1 type arguments.
How this line of code supposed to be in .NET 2?