Related resources for C# Delegates
  • 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 23/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# Language2/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 Simplified6/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.NET1/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 .NET10/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 Introduction6/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 Overview11/21/2006 6:01:46 AM. An overview instructing you how to create delegates and custom event handlers in C#.NET.
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