Click here to Skip to main content
15,881,173 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 

26 Mar 2017 by Danilow
Simulating C# event handlers in Java
26 Aug 2013 by paladin_t
A Mimetic C# Style Multicast Event Implementation with C++
6 Sep 2012 by zaphoed
Passing event references as interfaces in C# by proxifying them within "EventReference" instances.
10 Jan 2014 by Slavisa
Events and Delegates in Standard C++ implemented using Macro functions
10 Sep 2014 by DiponRoy
Let's make a lambda expression from a property name of a particular entity, and use it for OrderBy shorting
1 Dec 2017 by Jon McKee
How to do it and why it works
11 Jul 2016 by Alberto Nuti
In a console application, there is often the need to ask (and validate) some data from users. For this reason, I have created a function that makes use of generics and delegates to speed up programming.
5 Mar 2017 by DotNetSteve
Creating an extension class for View Models to save public properties using Generics and Delegates, replacing a reflection implementation
12 Nov 2013 by John Pravin
Asynchronous Programming with Task Parallel Library.
19 Oct 2014 by Nikita Mazhara
Describes how to implement generic methods for Microsoft Fakes Stubs and Shims using reflection constructed delegates at runtime
17 Jul 2015 by Steven Oberholzer
A simple tip to pass a delegate with any signature to a method
14 Jan 2020 by yutaraa
Get, move, copy and delete event handler delegates of Windows form controls.