Why Join
Become a member
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
TECHNOLOGIES
ANSWERS
LEARN
NEWS
BLOGS
VIDEOS
INTERVIEW PREP
BOOKS
EVENTS
CAREER
MEMBERS
JOBS
About Delegates
Delegates
is reference type variable used in Programming language Such as C and C++ language as pointer to function which is used for hold the reference to Method and mainly used in event and call back methods. The reference of
Delegates
method is changed at run time.If we wants want to use another class's functionality, as it without changing that behavior at all then we can used Delegation using HAS a Relationship.In another words, whenever you need to use functionality in another class without change that functionality, consider using delegation instead of inheritance.
Share
facebook
twitter
linkedIn
Reddit
Topics
No topic found
Content Filter
Articles
Videos
Blogs
News
Complexity Level
Beginner
Intermediate
Advanced
Refine by Author
[Clear]
Vijay Prativadi (5)
Amr Monjid (4)
Gul Md Ershad (3)
C# Curator (2)
Rikam Palkar (2)
Ajay Mor (2)
Pawan Pandey (2)
Arunava Bhattacharjee (2)
Nishant Mittal (2)
Banketeshvar Narayan (2)
Sathyaish Chakravarthy (2)
Pradeep Shet (2)
Dinesh Beniwal (2)
Atul Rawat (2)
Jasminder Singh (2)
Mahesh Chand (2)
Adalat Khan (1)
Nagaraj M (1)
Abhishek Yadav (1)
Andrea Angella (1)
Vidya Vrat Agarwal (1)
Tuba Mansoor (1)
Deepak Dutta (1)
Ganesh Nataraj (1)
Abhishek Yadav (1)
Rajesh Gonugunta (1)
Daniel Donbavand (1)
Hemant Jindal (1)
Ammar Shaukat (1)
Mohamed El-Qassas (Mvp) (1)
Mahesh Alle (1)
Abhishek Jaiswal (1)
Ahmad Anas (1)
Akhil Mittal (1)
Rathrola Prem Kumar (1)
Saillesh Pawar (1)
Usman Arshad (1)
Prakash Tripathi (1)
Vinoth Rajendran (1)
Josue Molina (1)
Shashangka Shekhar (1)
Rahul Prajapat (1)
Akash Malhotra (1)
Shakti Saxena (1)
Vishal Verma (1)
Neeraj Kumar (1)
Sekhar Srinivas (1)
Nitin (1)
Anupam Jain (1)
Vikram Chaudhary (1)
Padma Naban (1)
Ritesh Sharma (1)
Ajay Yadav (1)
Mohit Sharma (1)
Abhishek Singh (1)
Praveen Raveendran Pillai (1)
Nilesh Mohite (1)
Matthew Cochran (1)
Dave Richter (1)
Ashish Vanjani (1)
Pankaj Lohani (1)
Naveed Zaman (1)
Sachin Kalia (1)
Andrew Fenster (1)
Dhanushka Athukorala (1)
Ahmar Husain (1)
Vishal Gilbile (1)
TimothyA Vanover (1)
Scott Lysle (1)
Rajul Aggarwal (1)
Amit Choudhary (1)
Patrick Smacchia (1)
Moses Soliman (1)
Santhosh Veeraraman (1)
Varun Bansal (1)
Shivprasad (1)
Deepak Middha (1)
Thiagarajan Alagarsamy (1)
Related resources for Delegates
No resource found
Delegates in .NET
12/31/2020 6:32:04 AM.
Here you have a complete introduction to delegates.
Events In C#
9/27/2020 8:51:04 PM.
This article discusses events in c#. It will show you the relation between delegates and events.
Delegates In C#
9/26/2020 8:35:29 PM.
Learn how to use delegates in C#
C# .NET Delegates and Events
9/26/2020 8:29:27 PM.
In this tutorial, learn what is a delegate in C# and how delegates are implemented in C# code.
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.
Delegates In C# Explained
6/8/2020 5:58:15 AM.
In this article, we look at delegates and how to multicast them.
Func, Action And Predicate Delegates In C#
6/8/2020 5:50:52 AM.
If you don't want to declare delegates every time, you can use some built-in delegates.
Delegates In C#
2/12/2020 10:56:40 PM.
In this article, you will learn about detailed explanation of Advanced features in C#.
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.
Delegates, Anonymous Functions and Lambda Expressions in C#
6/4/2019 7:44:08 PM.
This article provides the basics of C# delegates, c# anonymous function, lambda expressions and delegate with lambda expressions.
Delegates and Events In C# .NET
5/9/2019 9:53:11 AM.
In this tutorial and code example, you'll learn how to work with Delegates In C# .NET.
Events And Delegates In C#
4/24/2019 8:19:41 AM.
In this article, you will learn about events and delegates in C#.
Event Handling in .NET using C#
4/9/2019 3:50:48 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
Delegates And Events In C#
4/1/2019 8:37:37 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.
Action and Func Delegates in C# .NET
2/26/2019 10:53:39 PM.
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#.
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.
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
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
Delegates in C#
6/22/2017 7:08:42 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.
Delegates, Anonymous Method, And Lambda Expression In C#
1/26/2017 11:38:12 AM.
This article discusses Delegates, Anonymous Methods, and Lambda Expression in C#.
Explore Delegates In C#
1/24/2017 11:39:33 PM.
In this article, you will explore delegates in C#.
How And When To Use Delegates In Your Project
1/23/2017 2:52:52 PM.
In this article, you will learn how and when to use delegates in your project.
Understanding <T> In C#
5/18/2016 4:54:37 AM.
In this article you will learn about what is <T> 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.
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#.
Overview Of Delegates
12/18/2015 12:48:35 AM.
In this article you will learn about Delegates and its types.
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.
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#.
Asynchronous Programming Using Delegates
11/4/2015 12:24:40 AM.
This article is intended to explain the concept of asynchronous programming using DelegateS.
Publisher And Subscriber In C#
11/3/2015 12:26:22 AM.
In this article you will learn about Publisher and Subscriber in C# language.
Different Ways To Create Delegates In C#
10/31/2015 11:34:57 AM.
This article is intended to explain the idea and concept to create Delegate with different approach.
Delegates And Interface Overview
10/28/2015 3:32:45 PM.
This article is intended to describe the relationship, similarities, differences between Delegate and Interface.
Action And Func Delegates In C#
10/6/2015 9:17:30 AM.
In this article you will learn about Action and Func Delegates in C#. Both of them are generic delegates, which means that you can assign both anonymous methods and lambda expression to them.
Delegates In C#
10/1/2015 1:55:51 AM.
In this article we will try to understand what is delegate and how to use it.
Delegates in C#
8/28/2015 7:58:57 PM.
In this article you will learn about delegates in the C# language.
Fire Event From Child To Parent in C#
8/27/2015 1:48:14 PM.
In this article you will learn how to call a web form method or event from a child user control event or method using delegates.
Covariance and Contravariance with delegates using C#
8/26/2015 3:46:53 PM.
In this article you will learn about Covariance and Contravariance in C# programming.
Delegate and its Memory Allocation in C#
8/20/2015 5:36:20 PM.
In this article you will learn an overview of delegate in C# language.
Delegates in C#
6/1/2015 2:40:25 PM.
This article explains delegates in C# programming with examples.
Difference between Func, Action and Predicate Delegates
4/28/2015 7:01:07 AM.
This Video provides a clear difference between Func,Action and Predicate Delegates which is one of the most frequently asked questions in Interview's these days. This Video demonstrates the difference between Func, Action and Predicate with explanation and simple and easy to understand example to answer the question.
Video: .NET Delegates (in Hindi) - Part 2
3/16/2015 5:50:09 AM.
The second part of a lecture in Hindi on using delegates with C#.
Video: .NET Delegates (in Hindi) - Part 1
3/5/2015 3:51:24 AM.
The first part of a lecture in Hindi on using delegates with C#.
Delegates in C# Language
2/26/2015 5:24:02 PM.
In this article you will learn about C# Delegates.
Delegates in C#
2/16/2015 12:30:42 PM.
In this article you will learn about Delegates in C#.
Delegate Basics in C#
2/12/2015 1:37:44 AM.
The article will explain the basics of delegates. How delegates are initialized and how they work.
Delegates in C# - Part 2
1/27/2015 12:50:02 PM.
In this article you will learn what delegates are and some of the advantages of delegates.
Delegates in C# - Part 1
1/26/2015 11:45:45 PM.
This article explains what delegates in C# are, how to use them and provides a real-life sample use of them.
Delegate Example Explained With Mediator Pattern
1/25/2015 10:29:55 PM.
This article explains delegates and is explained with an example using the Mediator Pattern.
C# Corner Delhi Developer's Day 18th January, 2015: Official Recap
1/22/2015 2:09:22 AM.
The C# Corner Delhi Chapter organized its monthly event, Delhi Developer's Day at C# Corner Noida Office, on 18th January, 2015.
C# Corner Delhi Developer's Day 28th December, 2014: Official Recap
1/7/2015 8:44:01 PM.
The C# Corner Delhi Chapter organized its monthly event, Delhi Developer's Day at C# Corner Noida Office, on 28th December, 2014.
Generic Delegates in C#
1/1/2015 12:24:34 AM.
In this article you will learn about Generic Delegates in C#.
Delegates in C# Language
12/31/2014 11:48:27 PM.
In this article you will learn about Delegates in C# Language.
From Delegates to Lambdas
11/22/2014 6:10:22 PM.
In this article I am going to discuss the evolution of lambdas from delegates.
Understanding Lambda Expressions
11/15/2014 5:25:38 PM.
This chapter has introduced the theory behind lambda expressions as well as illustrates its syntax of expressions.
Delegates, Anonymous Methods & Lamda Expressions
9/30/2014 6:30:12 PM.
This article explains the basic concept of delegates, anonymous methods and lamda expressions.
Generics in C# - Part II
9/3/2014 11:56:12 PM.
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
9/3/2014 11:48:59 PM.
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 generic methods.
Action Delegates
9/2/2014 11:55:22 PM.
This article describes the action delegates.
A Journey to Lambda Expression: Part 2
7/29/2014 6:11:02 PM.
This article relates a journey to Lambda.
Delegate Uses in C#
7/7/2014 7:12:42 PM.
This article describes the uses of delegates in C#.
Delegates Simplified
6/1/2014 11:03:12 PM.
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.
Delegates in Actual Projects
5/19/2014 2:38:32 PM.
This article explains how to use delegates in actual projects.
Pass Data From User Control to Parent Page, Using Events and Delegates in ASP.Net
3/13/2014 1:30:09 PM.
This article explains how to pass data from a user control to the parent page using events and delegates in ASP.Net.
Progress Bar in WPF With Anonymous Delegates
3/8/2014 11:51:52 AM.
Here I created a WPF Progress Bar that will demonstrate many things.
Understanding C# Events: What They Are and Where They Came From
2/18/2014 1:28:12 PM.
To help you get a working knowledge of C# events and event handling, this article explains where events come from, what they really are at a functional level and how they are expressed in C#. This article specifically looks at the Gang Of Four (GOF) Observer pattern.
Raising Events, Event Handlers, and the Use of Delegates
12/27/2013 6:25:00 PM.
This article focuses on delegates, how to use them, their relation to events, and their relation to raising events. It is meant to help the beginner learn delegates by example code.
Generic Delegates in C#
12/16/2013 8:18:02 PM.
In this article, let's try to understand generic delegates in the C# language.
What are Delegates in C#
10/27/2013 11:33:43 PM.
In this video you will learn about Delegates in detail.
Introduction To Delegates in F#
10/19/2013 1:56:23 PM.
In this article I will explain Delegates and how to them in a F# console application.
All about Generics
7/20/2013 1:34:45 PM.
Using this article we will learn all about generics in C#.
Learn Object Oriented Programming Using C#: Part 13
6/24/2013 11:20:13 PM.
This article explains another important component of OOP, which is delegates.
Func Delegate Using Lambda Expression in C#
6/24/2013 8:40:52 PM.
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.
Using Delegates in C#
5/20/2013 2:08:15 PM.
In this article you will learn about what Delegates are and how to use them in C#.
Named Delegates in C#
3/10/2013 4:08:22 PM.
This article demonstrates an interesting and very useful concept in C#.
Understanding Delegates Predicates and Lambda
2/22/2013 11:39:57 PM.
To have a clear undestanding of Predicates, you must have a good understanding og delegates.
Asynchronous Methods Calls in C#
2/7/2013 11:50:33 PM.
In this article I explain asynchronous methods calls.
Using Delegates in ASP.NET
1/15/2013 10:44:20 PM.
Here the main concern is how to read the data from the user control; for reading the data a delegate is used.
Delegates in VB.NET
11/10/2012 3:10:32 AM.
The Zip file contains two projects. One is VB.Net and the other is C#. Each project is an example of the same use of a delegate.
Manage Data in a VB Application (without the Database)
11/9/2012 11:12:02 AM.
This article provides an approach to building an application that may be used to collect, store, and retrieve data without relying upon a database to get there.
Contra-variance Delegates in .NET
10/24/2012 11:11:26 PM.
Today, in this article let’s play around with one of the interesting and most useful concepts in C#.
Co-variance Delegates in .NET
10/24/2012 11:11:15 PM.
Today, in this article let’s play around with one of the interesting and most useful concepts in C#.
Events and Delegates
10/20/2012 6:05:21 AM.
In this article let us see about Events and Delegates through an example.
Delegate And Async Programming C# (AsyncCallback And Object State)
10/13/2012 4:00:17 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 we used the BeginInvoke() method to make the Async call.
Writing C# 2.0 Unsafe Code
10/13/2012 3:55:54 AM.
We will see that C# allows suspending the verification of code by the CLR to allow developers to directly access memory using pointers.
Play With Action Delegates in ASP.NET
10/9/2012 7:32:37 PM.
Today, in this article let’s play around with one of the interesting and most useful concepts in C#.
Play With Func Delegates
10/8/2012 1:12:59 PM.
Today, in this article let’s play around with one of the interesting and most useful concepts in C#.
Using Delegates to Communication Between Windows Forms
10/4/2012 7:24:47 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 callback support to make simple communication between deferent opened windows forms
Events and Delegates in Remoting
9/30/2012 2:34:28 AM.
In this article I will explain you about Events and Delegates in Remoting.
Working with Delegates -Part II
9/29/2012 9:23:54 AM.
In this article we will discuss about delegates, what is multicast delegates and its contribution in Asynchronous communications and also how to work with long-running processes etc.
Invoking a Form UI Method From a Different Thread Using Delegates
9/29/2012 7:22:59 AM.
How to invoke a form UI method from a different thread using delegates (inter-thread communication).
6 important uses of Delegates and Events
9/29/2012 6:14:49 AM.
In this article we will first try to understand what problem delegate solves, we will then create a simple delegate and try to solve the problem. Next we will try to understand the concept of multicast delegates and how events help to encapsulate delegates. Finally we understand the difference between events and delegates and also understand how to do invoke delegates asynchronously.
Use of Delegates in C#
9/5/2012 5:39:34 PM.
In this article I explain delegates and multi-casting through delegates with an example.
Passing Data Between Forms
5/19/2012 4:06:08 AM.
There are so many methods to pass data between forms in windows application. In this article let me take four important and easiest ways of accomplishing this.
- Ebook
Source Code: Graphics Programming with GDI+
Graphics Programming with GDI+ is the .NET developer's guide to writing graphics appl...
Download