Click here to Skip to main content
15,885,980 members
Everything / Delegates

Delegates

delegates

Great Reads

by Sergey Alexandrovich Kryukov
Derived work based on the article by Sergey Ryazanov "The Impossibly Fast C++ Delegates": this good solution is fixed and further developed using C++11.
by David Lafreniere
A C++17 standards compliant delegate library capable of targeting any callable function synchronously or asynchronously
by Anton Chibisov
This tutorial showcases how to implement C++ delegates which are capable of being bound to methods and functions having arbitrary signature, i.e., any number and type of parameters and return value.
by Muraad Nofal
A haskell monad/(applicative)functor like interface in C# that extends IEnumerable.

Latest Articles

by David Lafreniere
A C++ standards compliant delegate library capable of targeting any callable function synchronously or asynchronously
by David Lafreniere
A C++17 standards compliant delegate library capable of targeting any callable function synchronously or asynchronously
by yutaraa
Get, move, copy and delete event handler delegates of Windows form controls.
by Jon McKee
How to do it and why it works

All Articles

Sort by Score

Delegates 

4 Jan 2012 by zenwalker1985
Refactoring Hooking and Unhooking Events TIP
30 May 2017 by n.podbielski
Explanation how to convert from one delegate type to second delegate of unknown or dynamically created type when their signatures match.
20 May 2012 by cpsglauco
How to use delegate in List.Find() predicate in C#
30 Aug 2013 by Dev Leader
Let’s see how events might be causing some leakage in your application.
23 Jul 2012 by Shabbir Lathsaheb
Another useful feature of delegates is the ability to execute a method asynchronously. That is, through a delegate, you can begin invocation of a method and then return immediately while the delegate executes its method in a separate thread.
23 Jul 2012 by PratapReddyP
In this post, we will go back to basics of C# concepts. From the time when i am new to .Net development till today, one of the first five C# questions is" What is a Delegate? What is an Event? What are the Differences? "