Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 152965
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T09:43:02+00:00 2026-05-11T09:43:02+00:00

What are the benefits/advantages of using delegates? Can anyone provide any simple examples?

  • 0

What are the benefits/advantages of using delegates? Can anyone provide any simple examples?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. 2026-05-11T09:43:03+00:00Added an answer on May 11, 2026 at 9:43 am

    They’re a great way of encapsulating a piece of code. For instance, when you attach an event handler to the button, that handler is a delegate. The button doesn’t need to know what it does, just how to call it at the right time.

    Another example is LINQ – filtering, projecting etc all require the same kind of template code; all that changes is the logic to represent the filter, the projection etc. With lambda expressions in C# 3 (which are converted into delegates or expression trees) this makes it really simple:

    var namesOfAdults = people.Where(person => person.Age >= 18)                           .Select(person => person.Name); 

    (That can also be represented as a query expression, but let’s not stray too far from delegates.)

    Another way of thinking of a delegate is as a single-method interface type. For example, the EventHandler delegate type is a bit like:

    public interface IEventHandler {     void Invoke(object sender, EventArgs e) } 

    But the delegate support in the framework allows delegates to be chained together, invoked asynchronously, used as event handlers etc.

    For more on delegates and events, see my article on the topic. Its focus is events, but it covers delegates too.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Are there any advantages or benefits to using tertiary operators for if statements? For
Is there any performance benefits to using Command objects to validate constraints over using
Are there any benefits of using the following code? <ul role=list> <li role=listitem></li> <li
So far, no one can really offer any benefit of using dual channel over
Are there any benefits to using the 'window' prefix when calling javascript variables or
What are the benefits or advantages to using a tree structure in a managed
I am wondering if there are any advantages of using any of these over
Can someone explain to me the advantages of using an IOC container over simply
What are the differences and/or advantages, if any, of using commas when declaring a
I know how derived tables are used, but I still can’t really see any

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.