-
as seen on ASP.net Weblogs
- Search for 'ASP.net Weblogs'
In yesterday’s post We learn about Delegates and how we can use delegates in C#. In today’s blog post we are going to learn about Multicast delegates. What is Multicast Delegates? As we all know we can assign methods as object to delegate and later on we can call that method with the help delegates…
>>> More
-
as seen on ASP.net Weblogs
- Search for 'ASP.net Weblogs'
Events and their underlying mechanism "Delegates" are very powerful
tools of a developer and Event
Driven Programming is one of the main Programming Paradigms. Its
wiki definition is "event-driven programming or event-based programming
is a programming paradigm in which the flow of the program…
>>> More
-
as seen on ASP.net Weblogs
- Search for 'ASP.net Weblogs'
I have used delegates in my programming since C# 2.0. But I have seen there are lots of confusion going on with delegates so I have decided to blog about it. In this blog I will explain about delegate basics and use of delegates in C#. What is delegate? We can say a delegate is a type safe function…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
While inspecting delegates in C# and .NET in general, I noticed some interesting facts:
Creating a delegate in C# creates a class derived from MulticastDelegate with a constructor:
.method public hidebysig specialname rtspecialname instance
void .ctor(object 'object', native int 'method') runtime…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
OK, this is going to be my beating a dying horse for the 3rd time.
However, this question is different from my earlier two about closures/delegates, which asks about plans for delegates and what are the projected specs and implementation for closures.
This question is about - why is the Java community…
>>> More