Related resources for Multicast delegate
  • Delegate Uses In C#9/12/2023 4:23:28 AM. This article describes the uses of delegates in C#.Delegates in C# are powerful and versatile constructs that enable you to work with methods as first-class citizens. They provide a way to treat metho
  • Mastering Delegates and Events In C# .NET2/12/2023 4:24:56 PM. This tutorial and code example will teach you how to work with delegates in C#.
  • Simple and Multicast Delegates in C#3/29/2022 9:47:55 AM. This article describes how to define and use simple/multicast delegates in C#.
  • Delegates, Anonymous Functions and Lambda Expressions in C#2/23/2022 10:43:50 AM. This article provides the basics of C# delegates, c# anonymous function, lambda expressions and delegate with lambda expressions.
  • Delegate in C#10/25/2018 6:05:03 AM. In this article, I am trying to explain delegates in an easy to understand way, hopefully after going through this article, you will feel comfortable using delegates and answering any questions relate
  • How Events And Delegates Are Related6/28/2018 3:20:15 PM. This articles describes about what is delegate, what are the different ways to define and declare delegates, when to use delegates, what is event and how events and delegates are associated or related
  • 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
  • Delegates in C# - Part 11/26/2015 11:45:45 PM. This article explains what delegates in C# are, how to use them and provides a real-life sample use of them.
  • 6 important uses of Delegates and Events9/29/2012 6:14:49 AM. In this article we will first try to understand what problem delegate solves, we will then create a simple delegate and try to solve the problem. Next we will try to understand the concept of multicast delegates and how events help to encapsulate delegates. Finally we understand the difference between events and delegates and also understand how to do invoke delegates asynchronously.