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 paladin_t
A Mimetic C# Style Multicast Event Implementation with C++
by John Pravin
Asynchronous Programming with Task Parallel Library.
by DiponRoy
Let's make a lambda expression from a property name of a particular entity, and use it for OrderBy shorting
by Danilow
Simulating C# event handlers in Java
by Jon McKee
How to do it and why it works
by Slavisa
Events and Delegates in Standard C++ implemented using Macro functions
by DotNetSteve
Creating an extension class for View Models to save public properties using Generics and Delegates, replacing a reflection implementation
by yutaraa
Get, move, copy and delete event handler delegates of Windows form controls.
by Nikita Mazhara
Describes how to implement generic methods for Microsoft Fakes Stubs and Shims using reflection constructed delegates at runtime
by Steven Oberholzer
A simple tip to pass a delegate with any signature to a method
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.
by saephoed
Passing event references as interfaces in C# by proxifying them within "EventReference" instances.