TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Akhil Gupta
NA
5
14.1k
Delegate's word meaning is representative. A delegate in .Net is juts like a function pointer in C#.
Nov 10 2010 2:09 AM
The most important property of a function pointer is that the syntax of the function and the pointer to the function must exactly be same. The returntypes and the list of arguments must match exactly.
Eg:
If a function looks like: int fact(int)
Then its function pointer should look like: int *p (int)
Here, as you may see the return types and the list of arguments of both function and function pointer match exactly.
When we use delegate then there are 3 stages which we need to follow:
Declaration: delegate <returntype> delegateName (<list of arguments>)
Object Creation: delegateName objDelegate = new delegateName(<function to which the delegate points>)
Invoking: objDelegate(<list of arguments that are to be passed to the function>)
The main uses of delegate comes in the following circumstances:
1) When we want to create the controls dynamically, then we cannot create the events for these controls beforehand as these controls are created only on runtime. In that case, if we want to bind these controls with their respective events then we need to use delegate.
So, delegate is first and foremost used for dynamic binding of controls with their events.
2) Delegate is also used in multitasking using threading.
Eg: Suppose we are copying a file from C: drive to D: drive. Then a progress bar would run which would indicate from time to time that how much contents have been copied - like 20% copied, 30% copied. This thing is an example of multiswitching, since here the thread is switching between 2 seperate opertaions. Once it is copying the data from one location to another location and then it is evaluating that how much content has been copied and increasing the progress bar accordingly. But, this switching is happening so fast, that the user gets a feeling as if 2 operations are happenng simultaneously.
So, in the above case, we may use a thread and make it switch between 2 operations. In this case also the delegate comes into play.
A detailed video tutorial has been provided on Delegate's usage for dynamic binding of controls with their events at the below link:
http://visiontechno.net/studymats/delegates.html
Reply
Answers (
5
)
Passing command-line arguments in another form
C# program access a server to get data over the internet