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 Delegate in C#
Share
facebook
twitter
linkedIn
Reddit
Topics
No topic found
Content Filter
Articles
Videos
Blogs
News
Complexity Level
Beginner
Intermediate
Advanced
Refine by Author
[Clear]
Mahesh Alle (1)
Mukesh Kumar (1)
Sekhar Srinivas (1)
Anupam Jain (1)
Dhananjay Kumar (1)
Puran Mehra (1)
Deepak Dwij (1)
Rajesh Bisht (1)
Subhendu De (1)
Matthew Cochran (1)
Filip Bulovic (1)
Related resources for Delegate in C#
No resource found
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
All About Delegate In C#
10/22/2015 1:41:29 PM.
In this article, I will demonstrate you all about delegate. Delegate is a type which represents the reference of a Method.
Func Delegate in C# with Examples
4/25/2015 1:05:19 AM.
This video provides a complete explanation about the Generic Func Delegate and also explains about how to use Func Delegate with Named Method , Using Func Delegate with Anonymous Methods and using Func Delegate with Lambda Expressions with example. Hope this video will help out in using the Func Delegate Properly.
Delegates in C#
2/16/2015 12:30:42 PM.
In this article you will learn about Delegates in C#.
What is Action in C#?
2/21/2012 11:19:28 PM.
Action is type of delegate. It returns no value. It may take 0 to 16 parameters.
C# Delegates
12/7/2011 6:16:08 PM.
The delegate topic seems to be a confusing and tough for most of the developers. In this article I will explain the basics of delegates and Event handling in C# in a simple manner.
Concept of a Delegate in C#
11/12/2011 6:07:05 PM.
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 argument types and return type match the delegate's
Delegate in .NET (C#): Digging / Acquaint - Make it Simple
7/18/2011 12:05:18 AM.
A delegate is an object or instance which can hold a reference of any function or which can bind a function.
ABC's of Delegate
12/14/2010 8:26:37 PM.
This article helps you to understand the basics of delegates in .NET Framework.
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.
- 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