Performance Test – Delegates vs Methods

Yan Cui

I help clients go faster for less using serverless technologies.

Quite some time ago I was asked to cover a C# developer interview for one of my neighbouring teams, and on the sheet of questions the original interviewer wanted me to ask was this question:

Q. Why should you NEVER use delegates?

I thought: “Well, at least I can rule myself out for the role!”

To my mind, if using delegates complicates your code or make it less readable/maintainable then you shouldn’t use it, but to say NEVER to using delegates? It just doesn’t make sense…

Puzzled, I asked: “Why not?”

“Because it’s an order of magnitude slower than using methods”

Sounds like he’s had his fingers burnt in the past, but still, it goes against everything I have experienced with using delegates..

“At least it is in the case of .Net 1.1”

Ahh, a little more context makes it that much more believable! But mind you, this was 2009 and .Net 3.5 had been out and surely whatever performance issue with delegates would have been fixed long along…

The Test

So, some two years later, I decided to put together a quick test to see if there is any difference in performance between invoking a delegate and a method in C# 4. The test is simple, given an empty delegate and method (see below), invoking each 10000 times in a row, which would take longer?

   1: Action MyDelegate = () => {};

   2:

   3: void MyMethod() {}

It’s worth noting that the test code is run in a debug, non-optimized (so no compiler in-lining) build.

The Result

Somewhat surprisingly, invoking delegates proved to be faster, averaging 269 ticks over 5 runs, where as invoking methods took an average of 365 ticks!


 

Whenever you’re ready, here are 4 ways I can help you:

  1. If you want a one-stop shop to help you quickly level up your serverless skills, you should check out my Production-Ready Serverless workshop. Over 20 AWS Heroes & Community Builders have passed through this workshop, plus 1000+ students from the likes of AWS, LEGO, Booking, HBO and Siemens.
  2. If you want to learn how to test serverless applications without all the pain and hassle, you should check out my latest course, Testing Serverless Architectures.
  3. If you’re a manager or founder and want to help your team move faster and build better software, then check out my consulting services.
  4. If you just want to hang out, talk serverless, or ask for help, then you should join my FREE Community.

 


Leave a Comment

Your email address will not be published. Required fields are marked *