SyntaxFix
Write A Post
Hire A Developer
Questions
Here's a way to do it:
// The method to call void Foo() { } Action action = Foo; action.BeginInvoke(ar => action.EndInvoke(ar), null);
Of course you need to replace Action by another type of delegate if the method has a different signature
Action