Related resources for elegate in C#
  • C# Delegate: Everything You Need To Know About Delegate In C#12/8/2023 11:33:21 AM. In this tutorial, learn what is a delegate in C# and how delegates are implemented in C# code.
  • What is Delegates in C# .NET?8/12/2023 12:44:59 PM. Delegates in C# act as method pointers, enabling dynamic invocation of methods. They enhance code modularity and flexibility, finding use in event handling, callbacks, and asynchronous programming.
  • Func in C#4/6/2022 2:48:05 PM. In this article, you will learn about Func delegate in C#.
  • ABC's of Delegate1/14/2021 10:29:11 AM. This article helps you to understand the basics of delegates in .NET Framework.
  • Delegate In C# In A Simple Way5/26/2020 4:20:19 AM. In this video, we will learn Delegate in C#.NET in a simple way with an example.
  • Concept Of A Delegate In C#10/13/2018 6:44:39 AM. 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 argume
  • 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#.
  • A Journey to Lambda7/1/2014 4:34:31 PM. In this article we will learn about delegates with examples in C#.
  • 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.
  • 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.