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 cpsglauco
How to use delegate in List.Find() predicate in C#
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.
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? "
by n.podbielski
Explanation how to convert from one delegate type to second delegate of unknown or dynamically created type when their signatures match.
by Dev Leader
Let’s see how events might be causing some leakage in your application.
by zenwalker1985
Refactoring Hooking and Unhooking Events TIP