Want to become a Vibe Coder? Join Vibe Coding Training here
x
C# Corner
Tech
News
Videos
Forums
Jobs
Books
Events
More
Interviews
Live
Learn
Training
Career
Members
Blogs
Challenges
Certification
Contribute
Article
Blog
Video
Ebook
Interview Question
Collapse
Feed
Dashboard
Wallet
Learn
Achievements
Network
Refer
Rewards
SharpGPT
Premium
Contribute
Article
Blog
Video
Ebook
Interview Question
Register
Login
Tags
No tag found
Content Filter
Articles
Videos
Blogs
Resources
News
Forums
Interviews
Complexity Level
Beginner
Intermediate
Advanced
Refine by Author
[Clear]
Muralidharan Deenathayalan(1)
Anand Thakur(1)
Arumilli Yamini(1)
Hemant Jindal(1)
Rathrola Prem Kumar(1)
Sandip G. Patil(1)
Pradeep Shet(1)
Abhishek Kumar(1)
Pawan Pandey(1)
Vidya Vrat Agarwal(1)
Mahesh Alle(1)
Rajesh Gonugunta(1)
Shivprasad (1)
Santhosh Veeraraman(1)
Resources
No resource found
How to use SSIS Multicast Component
May 19, 2011.
Here you will see how to use SSIS Multicast component.
Simple and Multicast Delegates in C#
Jun 05, 2007.
This article describes how to define and use simple/multicast delegates in C#.
Learn about Delegates And Events
Jan 20, 2025.
Delegates and events are key concepts in C#. A delegate is a variable that holds a reference to a method, allowing flexible method calls. Events use the publisher-subscriber model, where a publisher triggers an event and subscribers handle it.
How Events And Delegates Are Related
Jun 28, 2018.
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 with each other
How And When To Use Delegates In Your Project
Jan 23, 2017.
In this article, you will learn how and when to use delegates in your project.
Overview Of Delegate Concept In C#
Jan 19, 2017.
Delegates in C# are objects that hold references to methods. They enable callback functionality and event handling. There are single-cast and multicast delegates, supporting both void and non-void return types, offering type safety and flexible method invocation.
Delegates in C# - Part 1
Dec 14, 2014.
This article explains what delegates in C# are, how to use them and provides a real-life sample use of them.
Delegate Uses In C#
Jul 07, 2014.
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 methods as objects, allowing you to pass them as parameters to other methods, store them in variables, and invoke them dynamically. Delegates are commonly used in various scenarios within C# programming.
Delegates, Anonymous Functions and Lambda Expressions in C#
Jul 28, 2013.
This article provides the basics of C# delegates, c# anonymous function, lambda expressions and delegate with lambda expressions.
Mastering Delegates and Events In C# .NET
Jun 11, 2013.
This tutorial and code example will teach you how to work with delegates in C#.
Simple Delegates With Examples in C#
Mar 15, 2013.
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 callback methods.
Delegate in C#
Dec 17, 2012.
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 related to delegates.
6 important uses of Delegates and Events
Jun 02, 2010.
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.
Working with Delegates -Part II
Mar 04, 2008.
In this article we will discuss about delegates, what is multicast delegates and its contribution in Asynchronous communications and also how to work with long-running processes etc.