This post originated from an RSS feed registered with .NET Buzz
by Oliver Sturm.
Original Post: Delegate calls vastly sped up in .NET 2
Feed Title: Oliver Sturm's weblog
Feed URL: https://oliversturm.com/blog/blog/archives/category/programming/net/feed/
Feed Description: General musings and programming stuff, .NET category
Something I heard yesterday made me think about the aspect of performance, when deciding whether to use interfaces or delegates to implement a specific feature. For example, when implementing the Observer pattern, the classic approach involves interfaces, while .NET has support for (multicast) delegates natively, suggesting a builtin approach that might make more sense in [...]