Monday, November 30, 2009

Mucking around with delegates and dynamic methods. Trying to get some boilerplate code right before using it everywhere.

Need to test the performance of
Delegate.DynamicInvoke();
vs
dynamic blah = someDelegate;
blah.Invoke();
vs
someDelegate.Invoke();

Hopefully the 2nd option isn't much slower than the 3rd.

No comments:

Post a Comment