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

  • Home
  • SEARCH
  • 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 7181759
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T17:37:28+00:00 2026-05-28T17:37:28+00:00

Please show me simple example why do we need it and what will happen

  • 0

Please show me simple example why do we need it and what will happen if we didn’t use it in the example with delegate.
Thank you

  • 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. Editorial Team
    Editorial Team
    2026-05-28T17:37:29+00:00Added an answer on May 28, 2026 at 5:37 pm

    Sure:

    // With events...
    public class Button
    {
        public event EventHandler Click;
    }
    
    public void Client
    {
        public void Method(Button button)
        {
            // This is all I can do...
            button.Click += SomeHandler;
        }
    }
    
    
    // With plain delegate fields or properties...
    public class Button
    {
        public EventHandler Click { get; set; }
    }
    
    public void Client
    {
        public void Method(Button button)
        {
            // Who cares if someone else is already subscribed...
            button.Click = SomeHandler;
    
            // And let's just raise the event ourselves...
            button.Click(button, EventArgs.Empty);
        }
    }
    

    In other words, with events you’ve got a controlled implementation of the pub/sub pattern – separate subscribers can’t interfere with each other (except perhaps by throwing an exception within their handler) and only the publisher can “publish” (call the handlers).

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

Sidebar

Related Questions

Can someone please show a simple, but complete example of how one could use
Please can somebody show me a simple example of parsing some HTML using libxml.
Given the example below, can someone please show me how this could be called?
guys please post me an example for threading in MFC....it should show the progress
Please describe with a simple example, the differences between MVP-Passive View and MVP-Supervising controller.
Please show the simple and up to date standard way to create a python
Could you please show me the C# Equivalent of this VB.NET code: Public Partial
can someone please show me documentation on this method? i have the following line:
can u please show me how to query 3 tables using *? thanks
I just want to show text please wait while app is searching for satellite

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.