65,938 articles
CodeProject is changing.
Read more
.
Everything / delegates
Artificial Intelligence
Artificial Intelligence
Neural Networks
Machine Learning
Deep Learning
ML.Net
Big Data
Data Science
Tensorflow
ChatGPT
Internet of Things
Internet of Things
Arduino
Edge Device
Raspberry-Pi
Wearables
IoT Edge
Industrial IoT
DevOps
DevOps
Agile
Automation
Continuous Build
Continuous Delivery
Continuous Deployment
Continuous Integration
Deployment
Git
Installation
Integration Testing
Load Testing
Quality Assurance
TFS
Unit Testing
Testing
Containers
Containers
Docker
Kubernetes
Virtual Machine
High Performance Computing
High Performance Computing
GPU
Parallel Processing
Parallelization
Vectorization
Hosted Services
Hosted Services
AWS
Cordova
ExtJS
Google Cloud
Microservices
PhoneGap
Serverless
Storage
Web Hosting
WordPress
Azure
Security
Security
Blockchain
Cryptography
Encryption
Identity
Identity Server
Web Development
Web Development
Blazor
CSS3
Flask
HTML5
Kestrel
LESS
Nginx
Node.js
React
SCSS
Spring
Vue.js
ASP.NET
CSS
Apache
HTML
IIS
XHTML
Mobile Apps
Mobile Apps
Flutter
Ionic
iOS
Nativescript
React Native
Xamarin
Windows Mobile
Android
Desktop Programming
Desktop Programming
Cocoa
Electron
QT
Universal Windows Platform
X11
Windows Forms
ATL
MFC
Swing
Win32
WTL
WPF
XAML
System
Database Development
Database Development
Data Visualization
Elasticsearch
Lucene
MariaDB
MongoDB
NoSQL
PostgreSQL
Redis
MySQL
SQL Server
Productivity Apps and Services
Productivity Apps and Services
LibreOffice
OpenOffice
Sharepoint
Team Communication Tools
Biztalk
Microsoft Office
SAP
Game Development
Game Development
Doom
Kinect
Playstation 4
Playstation 5
Unity
Unreal
XBox
Multimedia
Multimedia
Audio
Image Processing
Video
Audio Video
DirectX
GDI
GDI+
OpenGL
General Programming
General Programming
Algorithms
Compression
Computational Geometry
Emulation
Exceptions
File
Internet
Localization
Memory Management
Optimization
Parser
Performance
Regular Expressions
Sorting
State Machines
Architecture
Design / Graphics
Printing
String
Threads
Usability
Programming Languages
Programming Languages
ASM
Bash
Basic
COBOL
Dart
Go
Haskell
Kotlin
Lua
Pascal
R
Razor
Rust
Scala
Swift
Typescript
Objective C
Visual Basic
VBScript
C++
C#
F#
FORTRAN
Java
Javascript
Perl
Python
Ruby
SQL
PHP
PowerShell
XML
Submit your article
Delegates
delegates
Great Reads
A Beginner's Tutorial on Basics of Delegates,
Anonymous Functions and Lambda Expressions in C#
by
Rahul Rajat Singh
This article discusses delegates and how to write delegate handlers using functions,
anonymous functions and Lambda expressions.
A Mimetic C# Style Multicast Event Implementation with C++
by
paladin_t
A Mimetic C# Style Multicast Event Implementation with C++
Asynchronous Multicast Delegates in C++
by
David Lafreniere
A C++ standards compliant delegate library capable of targeting any callable function synchronously or asynchronously
Asynchronous Multicast Delegates in Modern C++
by
David Lafreniere
A C++ delegate library capable of anonymously invoking any callable function synchronously or asynchronously
Latest Articles
A Beginner's Tutorial on Basics of Delegates,
Anonymous Functions and Lambda Expressions in C#
by
Rahul Rajat Singh
This article discusses delegates and how to write delegate handlers using functions,
anonymous functions and Lambda expressions.
A Mimetic C# Style Multicast Event Implementation with C++
by
paladin_t
A Mimetic C# Style Multicast Event Implementation with C++
Asynchronous Multicast Delegates in C++
by
David Lafreniere
A C++ standards compliant delegate library capable of targeting any callable function synchronously or asynchronously
Asynchronous Multicast Delegates in Modern C++
by
David Lafreniere
A C++ delegate library capable of anonymously invoking any callable function synchronously or asynchronously
All Articles
Article
Project
Technical Blog
Tip/Trick
Video
Reference
Asset
top
Sort by Score
Title
Updated
Author
Score
delegates
A Mimetic C# Style Multicast Event Implementation with C++
by
paladin_t
A Mimetic C# Style Multicast Event Implementation with C++
Asynchronous Programming
by
John Pravin
Asynchronous Programming with Task Parallel Library.
Building OrderBy Lambda Expression from Property Name in C#
by
DiponRoy
Let's make a lambda expression from a property name of a particular entity,
and use it for OrderBy shorting
C# Like Event Handlers Pattern in Java
by
Danilow
Simulating C# event handlers in Java
C++/
CLI: Storing Lambda in a Delegate
by
Jon McKee
How to do it and why it works
Events and Delegates in Standard C++
by
Slavisa
Events and Delegates in Standard C++ implemented using Macro functions
Extensions and Reflections and Generics oh my!
by
DotNetSteve
Creating an extension class for View Models to save public properties using Generics and Delegates,
replacing a reflection implementation
Extract and manipulate event handler delegates of Windows form controls
by
yutaraa
Get,
move,
copy and delete event handler delegates of Windows form controls.
Generic Methods Implementation in Microsoft Fakes
by
Nikita Mazhara
Describes how to implement generic methods for Microsoft Fakes Stubs and Shims using reflection constructed delegates at runtime
Passing Delegates With Any Signature to a Method
by
Steven Oberholzer
A simple tip to pass a delegate with any signature to a method
Read Method with Generics & Delegate
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.
Referencing events in C# using interfaces - A simple approach
by
saephoed
Passing event references as interfaces in C# by proxifying them within "EventReference" instances.