Related resources for Delegate 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
  • 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 Examples4/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# Delegates12/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 Simple7/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 Delegate12/14/2010 8:26:37 PM. This article helps you to understand the basics of delegates in .NET Framework.
  • 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.
C# Language Specification 5.0
This book provides a complete description of the C# language 5.0.
Download