TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
C# Corner
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
About delegate
Share
facebook
twitter
linkedIn
Reddit
Topics
No topic found
Content Filter
Articles
Videos
Blogs
News
Complexity Level
Beginner
Intermediate
Advanced
Refine by Author
[Clear]
Amr Monjid (5)
Matthew Cochran (3)
Tural Suleymani (3)
Sateesh Arveti (2)
Abhishek Yadav (2)
Rikam Palkar (2)
Gul Md Ershad (2)
George (2)
Mahesh Chand (2)
Shivam Payasi (2)
Amit Choudhary (2)
Ajay Mor (2)
Banketeshvar Narayan (2)
Sagar Pardeshi (2)
Santosh (1)
mercy_gp (1)
Pathum Fernando (1)
Mukesh Nailwal (1)
C# Curator (1)
Sourav Kayal (1)
Yogesh Jaiswal (1)
Vipul Malhotra (1)
Sachin Kalia (1)
Mitchel Sellers (1)
Abhishek Kumar (1)
Abhishek Jaiswal (1)
Jagannath Sethi (1)
Rathrola Prem Kumar (1)
Gurpreet Arora (1)
Ahmad Anas (1)
Scott Lysle (1)
Laks Tutor (1)
Mohammad Tahir Ansari (1)
Vidya Vrat Agarwal (1)
Nitin (1)
Lokesh Varman (1)
Sangeetha S (1)
Abhishek Bhat (1)
Nishant Mittal (1)
Ganesh Nataraj (1)
Deepak Middha (1)
Shalilesh Kumar Saha (1)
Kirtesh Shah (1)
Ahmar Husain (1)
Uttam Kumar (1)
Anand Thakur (1)
Pawan Pandey (1)
Abhishek Yadav (1)
Moses Soliman (1)
Jay Krishna Reddy (1)
Deepak Dutta (1)
Akkiraju Ivaturi (1)
Pankaj Lohani (1)
Ashish Bhatnagar (1)
Vishal Gilbile (1)
Subhendu De (1)
Srihari Chinna (1)
Adalat Khan (1)
Hemant Kumar (1)
Nagaraj M (1)
Shrimant Telgave (1)
Andrea Angella (1)
Tuba Mansoor (1)
Farhan Ahmed (1)
Rajesh Gonugunta (1)
Arunava Bhattacharjee (1)
Deepak Dwij (1)
Daniel Donbavand (1)
Hemant Jindal (1)
Sivaraman Dhamodaran (1)
Ammar Shaukat (1)
Mohamed El-Qassas (Mvp) (1)
Mahesh Alle (1)
Akhil Mittal (1)
Sandip G. Patil (1)
Saillesh Pawar (1)
Emiliano Musso (1)
Anil Kumar (1)
Usman Arshad (1)
Prakash Tripathi (1)
Vinoth Rajendran (1)
Related resources for delegate
No resource found
Secrets Of Accumulator Functions
11/22/2023 9:21:23 AM.
Accumulator functions, also known as aggregation functions or reduce functions, are essential components in functional programming and data processing. These functions operate on a collection of value
Design Pattern with .NET Delegates
11/15/2023 6:13:19 AM.
Your article is detailed and well-structured, providing a clear explanation of implementing design patterns using generic delegates.
Hello World In different Styles
10/26/2023 9:43:29 AM.
I've attempted to write the traditional 'Hello World' in different styles. This explores the different possibilities of addressing a problem - 'Hello World' with different features
Learning The Basics Of Delegates In C#
10/25/2023 11:27:55 AM.
Delegates are a type that reference a Method. When it is assigned by a method it behaves exactly the same as that method. It can be used as parameters and can be returned as a value. So it has same wh
Types of Delegates in C#
10/25/2023 5:09:37 AM.
Here in this article, I am going to explain the types of delegates in C# along with the example.
C# Delegate: Everything You Need To Know About Delegate In C#
10/20/2023 6:57:48 AM.
In this tutorial, learn what is a delegate in C# and how delegates are implemented in C# code.
Delegates In C#
10/18/2023 5:47:20 AM.
Delegates in C# are a fundamental concept in the language. They are used to create reference types that can encapsulate methods with a specific signature, allowing you to treat methods as objects. Del
Look At Covariance And Contravariance In Delegates
10/6/2023 10:32:36 AM.
In this article, we will look into Covariance and Contravariance in Delegates using C#.In the context of delegates in C#, "covariance" and "contravariance" refer to the ability to
2 Ways to Implement Asynchronous Technique in C#
9/25/2023 12:01:05 PM.
In this article we will see how to implement asynchronous style in C# application (yes, even in .NET 4.0).
Delegates In C# Explained
9/20/2023 8:13:19 AM.
In this article, we look at delegates and how to multicast them.
Func, Action And Predicate Delegates In C#
9/20/2023 7:01:21 AM.
If you don't want to declare delegates every time, you can use some built-in delegates.
Calling Asynchronously Method Using BeginInvoke Method in C#
9/19/2023 7:19:22 AM.
Sometimes we need to call a method asynchronously and don’t want to wait until it completes execution.
Calling Parent Page Method From UserControl in C#
9/15/2023 10:41:15 AM.
In this article you will learn how to call a parent's page method from a UserControl in C#.
Func Delegate Using Lambda Expression In C#
9/15/2023 7:29:10 AM.
In this article I'll try to explain a cool feature introduced with .NET 3.5. Known as Func, also named by some developer as a readymade delegate.
Learning Delegates In C#
9/12/2023 10:45:45 AM.
There is this thing in C# called a delegate, which is going to be crucial to build interactions between our objects. What’s a delegate, you ask? Good question. A delegate is a pointer to a method.
Custom Events And Delegates
9/12/2023 10:44:06 AM.
Custom events and delegates are fundamental concepts in modern programming languages like C#. They provide a powerful mechanism for implementing the observer pattern, enabling objects to communicate a
Delegate Uses In C#
9/12/2023 4:23:28 AM.
This article describes the uses of delegates in C#.Delegates in C# are powerful and versatile constructs that enable you to work with methods as first-class citizens. They provide a way to treat metho
Functional Programming in C#: Currying
9/6/2023 9:34:01 AM.
Currying is a way to re-write a function with multiple arguments in such a way as it can be called as a chain of functions each with a single argument. This article covers using a few simple utility m
Delegates in C#
9/5/2023 10:00:22 AM.
This article is introducing a new reference type, delegate. A delegate is a C# language element that allows programmers to reference a method for their development work.
Generic in C#
9/1/2023 12:46:42 PM.
Generics in C# 2.0 revolutionize code design by decoupling classes and methods from data types. They're key in creating strongly typed, reusable, and performant code. You declare generics using th
How And When To Use Delegates In Your Project
9/1/2023 11:10:06 AM.
In this article, you will learn how and when to use delegates in your project.
Delegates in C#
8/25/2023 9:09:14 AM.
Explore the fundamental potency of C# delegates—vital for encapsulating methods as first-class entities. Empower callbacks and event management for efficient C# application development.
Delegates, Anonymous Method, And Lambda Expression In C#
8/24/2023 10:58:50 AM.
Delegates, Anonymous Methods, and Lambda Expressions in C# introduces essential concepts in C# programming related to delegates, anonymous methods, and lambda expressions. These features enable develo
Passing Data Between Forms Without Events and Delegates
8/23/2023 10:36:02 AM.
This article describes a simplified approach to allowing communication between forms without the use of events and delegates.
Different Ways To Create Delegates In C#
8/21/2023 6:06:47 AM.
This article is intended to explain the idea and concept to create Delegate with different approach.
Understanding C# Delegates
8/14/2023 7:36:37 AM.
Delegates in C# are a powerful feature that allow you to encapsulate a reference to a method inside a delegate object.
What is Delegates in C# .NET?
8/12/2023 12:44:59 PM.
Delegates in C# act as method pointers, enabling dynamic invocation of methods. They enhance code modularity and flexibility, finding use in event handling, callbacks, and asynchronous programming.
Multi-Threading (4-1), delegate and MultiThreading
7/5/2023 5:49:28 AM.
This article will discuss delegate and MultiThreading
Multi-Threading (4), Delegate based Asynchronous Programming Model
7/5/2023 5:48:30 AM.
This article will discuss delegate based Asynchronous Programming Model.
Learn Delegates In C#
2/19/2023 6:28:44 PM.
Delegate in C# is a type that allows methods to be passed as parameters. Learn how to work and implement delegates in your C# app to define callback methods and return parameters.
Events In C# - A Tutorial on C# Events
2/12/2023 8:54:14 PM.
This tutorial helps you understand events in C# and how to implement events in your C# .NET app.
Mastering Delegates and Events In C# .NET
2/12/2023 4:24:56 PM.
This tutorial and code example will teach you how to work with delegates in C#.
Asynchronous Programming Model: In Chasing The Ideal
2/8/2023 10:35:50 AM.
This articles talks about Asynchronous Programming Model and Asynchronous delegates.
Proof-Of-Stake In Blockchain
2/6/2023 9:42:58 AM.
Proof-of-stake is a consensus process used to determine the next major change in the network. Participants lock up some of their money as part of a staking mechanism in order to be chosen.
Use Of Delegates In C# Events
1/23/2023 5:05:44 AM.
Here is an example of programs in C# that demonstrates the events with and without delegates.
Events And Delegates In Class Library And Worker Service
12/21/2022 6:44:59 AM.
In this article, you will learn about Events and Delegates in Class Library and Worker Service.
C# In Practice - Building Tech Support App
12/1/2022 10:25:39 AM.
In this article, you will learn about simple app building for beginners in C#.
A Strategy for Using Delegates in C#
11/17/2022 6:52:27 AM.
In a recent article comment I was asked for a sample of how to use a delegate and so I wanted to put together a sample of how we can use delegates in order to implement a strategy pattern in a way tha
Delegates Simplified
11/17/2022 6:33:02 AM.
Delegates encapsulate and pass methods as parameters to other methods. A delegate can encapsulate a named or an anonymous method. You’re most likely to use a delegate in events or callbacks.
Generic Delegates in C#
11/17/2022 6:28:43 AM.
In this article, let's try to understand generic delegates in the C# language.
C# Delegates In Practice - Implementing Observer Pattern With Delegates
10/31/2022 5:32:13 AM.
In this article, you will learn about C# Delegates In Practice - Implementing The Observer Pattern with Delegates.
Command Design Pattern in C#
9/2/2022 9:41:48 AM.
Here you will learn about the Command Design Pattern in C#.
Understanding <T> In C#
8/31/2022 7:01:25 AM.
In this article you will learn about what is <T> in C#.
Delegates And Events In C#
8/24/2022 8:47:13 AM.
A delegate in C# is similar to a function pointer in C or C++. Using a delegate allows the programmer to encapsulate a reference to a method inside a delegate object.
Use of Delegates in C#
8/22/2022 10:59:28 AM.
In this article, I explain delegates and multi-casting through delegates with an example.
Generic Delegates In C#
5/17/2022 4:18:59 PM.
Here ill describe that why we need Generic Delegates what are Generic Delegates, keyword used in Generic Delegates and their type with example
Delegates In C#
5/16/2022 5:16:27 PM.
Here we discuss that what are delegates and why we use delegates and how to use assign delegates.
Asynchronous Nature of Delegates
5/9/2022 11:12:13 AM.
In this article you will see the other face of the delegate type in C#, it will show you how you can invoke a method asynchronously using delegates.
Events Programming in C#
5/4/2022 10:59:11 AM.
In this article, author discusses the events model in .NET and how to implement events in your applications using C#.
Delegates And Async Programming
4/26/2022 10:46:02 AM.
The .Net delegate type is essentially a type-safe, object oriented, function pointer.
Delegate And Async Programming C# (AsyncCallback And Object State)
4/26/2022 10:26:16 AM.
In the previous article we discussed the use of delegates to call methods asynchronously then we talked about Synchronization of threads in a Multithreading environment. In the previous code example w
Func in C#
4/6/2022 2:48:05 PM.
In this article, you will learn about Func delegate in C#.
Asynchronous Methods Calls in C#
4/1/2022 11:59:25 AM.
In this article I explain asynchronous methods calls.
Generics in C# - Part II
4/1/2022 10:01:52 AM.
In part II of generics in C# we will see how to create generic classes, structures, interfaces, and delegates. We will also see how to create a custom generic collections.
Generics in C# - Part I
4/1/2022 9:44:48 AM.
In Part I of this series you will see the importance of generics, you will learn how to use generic types which in the System.Collections.Generic namespace and you will also learn how to create generi
Understanding About Delegates In C#
3/31/2022 3:24:16 PM.
In this article, you will learn about delegates in C#.
Simple and Multicast Delegates in C#
3/29/2022 9:47:55 AM.
This article describes how to define and use simple/multicast delegates in C#.
Delegates, Anonymous Functions and Lambda Expressions in C#
2/23/2022 10:43:50 AM.
This article provides the basics of C# delegates, c# anonymous function, lambda expressions and delegate with lambda expressions.
Action and Func Delegates in C# .NET
2/15/2022 10:23:58 AM.
Func and Action generic delegates were introduced in .NET 3.5. In this article, you will learn how to implement func and action in C#.
Callback Operation By Delegate Or Interface
1/12/2022 9:13:58 AM.
This article is intended to explain the concept of callback operation with the help of Delegate.
Using Delegates to Communication Between Windows Forms
1/11/2022 10:10:36 AM.
Delegates are one of the wonderful features of .Net Framework. Their primary use is focused on support event handling and callback mechanism. In this article we will explore how to use delegate as ca
Action And Func Delegates In C#
12/6/2021 3:01:23 PM.
A brief article about the Action and Func Delegates in C#
Event Handling in .NET using C#
11/16/2021 5:02:16 AM.
In this article I discuss the event handling model in .NET using C#. The discussion starts with an introduction to the concept of delegates and then it extends that concept to events and event handlin
Functional Programming in Simple Terms: Explained
3/25/2021 5:28:42 AM.
In this article we learn about Functional Programming in a very simple manner.
MatchEvaluator Delegate of a Regular Expression Replace Method in ASP.Net
3/17/2021 10:38:13 AM.
This article explains the MatchEvaluator Delegate of a custom verification for each match found by a Regular Expression Replace method.
Asynchronous Programming In .NET
3/3/2021 2:40:11 PM.
In this article, you will learn about Asynchronous Programming in .NET.
Using Delegates in ASP.NET
3/2/2021 9:33:46 AM.
Delegates have always been a useful concept introduced in the .Net framework, but because of the difficulty of implementation, first-time developers might find it difficult to implement delegates in .
ABC's of Delegate
1/14/2021 10:29:11 AM.
This article helps you to understand the basics of delegates in .NET Framework.
C# 4.0 Method Parameters
1/3/2021 5:16:15 AM.
This article talks about optional parameters. We can use default values for the parameters for Constructor methods, Delegates, and Methods.
Delegates in .NET
12/31/2020 6:32:04 AM.
Here you have a complete introduction to delegates.
Events in .NET
12/3/2020 10:15:18 PM.
An event is a message sent by an object to signal the occurrence of an action. This action caused by the user interaction such as button click, mouse click etc.
Automatic Delegation In An Alexa Skill
10/24/2020 8:32:54 AM.
In this article, I am going to demonstrate how to use an automatic delegation feature to simplify your code to collect and confirm slot values.
Delegates - Action vs Func vs Predicate
9/2/2020 2:18:53 PM.
In this article, we will see the usage for 3 types of delegates.
Delegate In C# In A Simple Way
5/26/2020 4:20:19 AM.
In this video, we will learn Delegate in C#.NET in a simple way with an example.
How Delegates Work In C#
11/22/2019 2:58:18 AM.
Learn everything you need to know to understand and work with delegates in C#. The video explains how delegates allow you to implement the strategy design pattern in a .NET idiomatic way.
Func Delegate In C#
8/29/2019 3:42:41 AM.
In this video, we will talk about Func delegate in C#.
Action Delegate Using Lambda Expression In C#
8/9/2019 11:25:02 AM.
This video shows the practical usage of Action Delegate in C# using Lambda expression.
Events And Delegates In C#
4/24/2019 8:19:41 AM.
In this article, you will learn about events and delegates in C#.
An Overview of Delegate In C#
1/17/2019 8:43:33 AM.
In this piece of content, we will learn about delegates in C# programming. Delegate is one of the most common and the most useful concepts and every developer must have the basic knowledge of delegate
Delegate in C#
10/25/2018 6:05:03 AM.
In this article, I am trying to explain delegates in an easy to understand way, hopefully after going through this article, you will feel comfortable using delegates and answering any questions relate
Func<> Delegates in LINQ
10/24/2018 3:15:54 AM.
Learn how Func<> Delegates in LINQ work. Func delegates are pointers to methods that take one or more parameters and must return a value.
Concept Of A Delegate In C#
10/13/2018 6:44:39 AM.
An interesting and useful property of a delegate is that it does not know or care about the class of the object that it references. Any object will do; all that matters is that the method's argume
C# Delegates, Action, and Func
8/10/2018 12:02:02 AM.
In this video, we will be looking at the three important parts of C# - Delegates, Func, and Action.
How Events And Delegates Are Related
6/28/2018 3:20:15 PM.
This articles describes about what is delegate, what are the different ways to define and declare delegates, when to use delegates, what is event and how events and delegates are associated or related
Creating Simple Thread In C#
3/26/2018 1:04:10 AM.
This video shows creating and running threads in C-Sharp. It also explains the use of Thread.Join().
Use Of Delegates In Programming With Simple Example
1/23/2018 11:44:30 AM.
We all have studied delegates in programming, especially in high-level languages. But most probably, it’s hard to understand if you are new to programming. So I’ll be writing some stuff on the use of
Missing 'Manage Delegates' Option In PWA Setting In Project Server 2016
10/24/2017 12:54:43 AM.
In this article, we will be fixing the issue Missing 'Manage Delegates' option in PWA Setting.
Simple Delegates With Examples in C#
6/26/2017 3:20:03 AM.
Here, you will see delegates with examples in C#. Delegates are similar to C++ function pointers, but are type safe. Delegates allow methods to be passed as parameters. Delegates can be used to define
Explore Delegates In C#
1/24/2017 11:39:33 PM.
In this article, you will explore delegates in C#.
Overview Of Delegate Concept In C#
1/19/2017 11:15:55 PM.
In this article, you will learn about the delegate concept in C#.
Learn Tiny Bit Of C# In 7 Days - Day 4
5/12/2016 11:57:13 AM.
In this article you will learn about Delegates, Enums, Attributes, Generics in C#. This is part 4 of the series.
Invoke Method To Update UI From Secondary Threads In VB.NET
1/25/2016 9:39:49 AM.
In this brief article, we'll see how it can be possible, through the Invoke method, which is available to all controls through the System.Windows.Form namespace, to realize such functionality in order to execute a graphic refresh and update through delegates.
Understanding Delegates In C# - Part 2
1/10/2016 12:13:55 PM.
In this article I will explain about delegates with named method, anonymous method, Lambda Expression, anonymous method with omit parameter list, and delegate inference.
Understanding Delegates In C#
1/5/2016 12:18:17 AM.
In this article you will learn about understanding delegates in C#.
C# Delegate - A Silent Hero Behind Modern Programming
12/29/2015 3:13:33 PM.
This article is about the usage of Delegate and its Power (multi-casting, Func, Action, Predicate, Event & Callback methods and so on).
Overview Of Delegates
12/18/2015 12:48:35 AM.
In this article you will learn about Delegates and its types.
Implement Custom Promoted ActionsDelegate Control In SharePoint 2013
12/8/2015 1:16:21 PM.
In this article you will learn how to implement Custom Promoted ActionsDelegate Control in SharePoint 2013.
Threading Simplified: Part 5 (Thread Pools)
12/7/2015 2:33:20 AM.
This article explains what thread pools are and how to use them efficiently in multithreading using QueueUserWorkItem method and Asynchronous delegates.
Implement Custom SuiteLinks Delegate Control In SharePoint 2013
12/3/2015 4:56:12 AM.
In this article we will see how to implement SuiteLinks Delegate Control in SharePoint 2013
Delegates Make Confusion (Where to use) In C#
11/27/2015 10:10:41 AM.
In this article you will learn about Delegates and where to use them in C#.
- Ebook
Source Code: Graphics Programming with GDI+
Graphics Programming with GDI+ is the .NET developer's guide to writing graphics appl...
Download