Related resources for delegates in C#
  • 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
  • How And When To Use Delegates In Your Project1/23/2017 2:52:52 PM. In this article, you will learn how and when to use delegates in your project.
  • C# .NET Delegates and Events2/4/2016 9:35:23 AM. In this article, you will learn how to create and manipulate delegate types as well as C# events which streamline the process of working with delegate types.
  • Understanding Delegates In C# - Part 21/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#.
  • Delegates in C#8/28/2015 7:58:57 PM. In this article you will learn about delegates in the C# language.
  • Delegates in C# Language12/31/2014 11:48:27 PM. In this article you will learn about Delegates in C# Language.
  • Delegate Uses in C#7/7/2014 7:12:42 PM. This article describes the uses of delegates in C#.
  • Delegates in Actual Projects5/19/2014 2:38:32 PM. This article explains how to use delegates in actual projects.
  • What are Delegates in C#10/27/2013 11:33:43 PM. In this video you will learn about Delegates in detail.
  • 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#.
  • Contra-variance Delegates in .NET10/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 .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#.
  • 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.
  • 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.
  • Working With Delegates in C#5/14/2012 7:51:30 PM. In this article I explain delegates and how we use them.
  • 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.
  • Delegates in C#12/6/2011 12:11:19 AM. This article discusses the delegate type and how it can be used to point to methods in the application which can be invoked at later time. This article demonstrates also the delegate ability to multicast and delegate covariance.
  • Delegates And Async Programming7/21/2011 3:31:53 PM. The .Net delegate type is essentially a type-safe, object oriented, function pointer.
  • Delegates in C#11/1/2010 7:19:32 AM. This article discusses what delegates are and how they can be used in C# with lucid code examples.
  • Events/Delegates example in C#8/18/2010 8:33:34 PM. I made a little events/delegates example. I'm sharing it with you because events and delegates can be hard when your learn them and this example could help you.
  • Look at Covariance and Contravariance in Delegates4/15/2010 8:12:41 AM. In this article, we will look into Covariance and Contravariance in Delegates using C#.
  • Delegates in C#7/24/2009 3:29:33 AM. In this article let us learn about Delegates in C#.
  • Events in C#3/3/2008 4:09:01 AM. This article discusses events in c#. It will show you the relation between delegates and events.
  • Events in C#3/3/2008 4:09:01 AM. This article discusses events in c#. It will show you the relation between delegates and events.
  • 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.
  • Implementing Delegates in C#12/26/2005 4:43:00 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. A base class is derived and the delegate calls a method on several classes derived from the base class.
  • Implementing Delegates in C#12/26/2005 4:43:00 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. A base class is derived and the delegate calls a method on several classes derived from the base class.
  • Events and Delegates12/23/2005 5:42:34 AM. Events in C# are based on delegates, the Originator defining one or more callback functions as delegates and the listening object then implements then.
  • Event Handling in .NET using C#12/20/2005 11:58:15 PM. 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 handling in .NET.
  • Understanding Delegates in C#12/7/2005 12:24:05 AM. Delegate is type which holds the method(s) reference in an object. It is also reffered as a type safe function pointers.