Unboxed Solutions Blog The frenetic soapbox

Mar 29

Sean

More Delegate Inference

  • Created: Monday, March 29, 2004
  • Sean

Not only can you assign a function name to a delegate, how about the same thing calling BeginInvoke?

MyDelegate myDel = SomeMethod;         
myDel.BeginInvoke("Test", OnAsyncCallBack, null);

Check out this MSDN article.

;