Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Everything / delegates

Delegates

delegates

Great Reads

by Rahul Rajat Singh
This article discusses delegates and how to write delegate handlers using functions, anonymous functions and Lambda expressions.
by paladin_t
A Mimetic C# Style Multicast Event Implementation with C++
by David Lafreniere
A C++ standards compliant delegate library capable of targeting any callable function synchronously or asynchronously
by David Lafreniere
A C++ delegate library capable of anonymously invoking any callable function synchronously or asynchronously

Latest Articles

by Rahul Rajat Singh
This article discusses delegates and how to write delegate handlers using functions, anonymous functions and Lambda expressions.
by paladin_t
A Mimetic C# Style Multicast Event Implementation with C++
by David Lafreniere
A C++ standards compliant delegate library capable of targeting any callable function synchronously or asynchronously
by David Lafreniere
A C++ delegate library capable of anonymously invoking any callable function synchronously or asynchronously

All Articles

Sort by Score

delegates 

by Rahul Rajat Singh
This article discusses delegates and how to write delegate handlers using functions, anonymous functions and Lambda expressions.
by Mahdi K.
A detailed description for Delegate, Func, Predicate, Action and Lambda Expression.
by abhinav_soni
Support for Delegates, Events and Pass by ref in Java using bytecode manipulation
by Shivprasad koirala
In this article we will try to understand Delegates, Multicast delegates and Events in C#
by DotNetSteve
Using delegates to group, conquer cross cutting concerns and create dynamic validators
by DotNetSteve
Using delegates to group, conquer cross cutting concerns and created dynamic validators
by Bhushan Mulmule
This write-up will take you through all the steps that are required to understand lambda expression thoroughly.
by Akhil Mittal
This article of the series "Diving into OOP" will explain all about events in C#. The article focusses more on practical implementations and less on theory.
by Muraad Nofal
A haskell monad/(applicative)functor like interface in C# that extends IEnumerable.
by Doug Langston
A Visual Studio 2015 project that shows one way to pass information between Windows Forms
by andrea contoli
Presentation and testing of some procedural bitmap creation algorithms .
by John L. Vidal
Events in .NET are great. There is the "event" keyword that gives a fast way to start to use them, but..
by Scanix
SystemFramework defines interfaces, classes, and types to support a native runtime system with its own garbage collector, delegates, etc. The design of SystemFramework classes is similar to those of the .NET Framework.
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 K. Naveen. Bhat
The article shows how we can solve various technical problems easily with the help of delegates.
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 Dominic D Williams
The power of delegates outside of events.