TECHNOLOGIES
ANSWERS
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 C# Delegates
Share
facebook
twitter
linkedIn
Reddit
Topics
No topic found
Content Filter
Articles
Videos
Blogs
News
Complexity Level
Beginner
Intermediate
Advanced
Refine by Author
[Clear]
Matthew Cochran (3)
Sathyaish Chakravarthy (2)
Abhishek Jaiswal (1)
Banketeshvar Narayan (1)
Vinoth Rajendran (1)
Josue Molina (1)
Shashangka Shekhar (1)
Nitin (1)
Vikram Chaudhary (1)
Atul Rawat (1)
Mahesh Chand (1)
Andrew Fenster (1)
Vishal Gilbile (1)
Vijay Prativadi (1)
Pathum Fernando (1)
Filip Bulovic (1)
Mitchel Sellers (1)
Related resources for C# Delegates
No resource found
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.
Understanding Delegates In C#
1/5/2016 12:18:17 AM.
In this article you will learn about understanding delegates in C#.
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#.
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.
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.
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.
Generic Delegates in C#
1/1/2015 12:24:34 AM.
In this article you will learn about Generic 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.
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#.
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.
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#.
Learning the Basics of Delegates in C#
12/6/2011 12:12:12 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 what are the methods have.
A Strategy for Using Delegates in C#
8/29/2007 9:43:56 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 that requires much less code that is easier to maintain than when approaching the same solution deriving sub classes using an OOP implementation.
A Strategy for Using Delegates in C#
8/29/2007 9:43:56 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 that requires much less code that is easier to maintain than when approaching the same solution deriving sub classes using an OOP implementation.
Learning Delegates in C#, an Introduction
6/11/2007 10:21:43 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. What’s that mean? Just like you can pass variable by reference, you can pass a reference to a method. Let me give you an example.
Exploring delegates in C#
6/5/2007 7:12:51 AM.
Delegates are a kind of type safe function pointers which are actually declared as class derived from System.MulticastDelegate.
Custom Events and Delegates, An Overview
11/21/2006 6:01:46 AM.
An overview instructing you how to create delegates and custom event handlers in C#.NET.
- Ebook
C# and the .NET Platform, Second Edition
The mission of this book is to provide you with a solid foundation of the C# language...
Download