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 6839329
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T23:42:21+00:00 2026-05-26T23:42:21+00:00

I guess C# eventhandler has a list of listeners and it loops thru the

  • 0

I guess C# eventhandler has a list of listeners and it loops thru the list when sending a message. My question is how does this works in internally. Does it make a copy of the list before looping it thru and if so, what happens if someone unregister itself after the list has been copied but it has not yet received the message.

Will it still get the message even do it has unregister itself?

  • 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-26T23:42:21+00:00Added an answer on May 26, 2026 at 11:42 pm

    A delegate is immutable, so when you are invoking a delegate the list of subscribers is known and fixed. Subscribing or unsubscribing replaces the delegate that underpins the event.

    This does indeed mean that in a multi-threaded scenario you can receive an event after unsubscribing, because either:

    1. the delegate was already in the process of being invoked
    2. a snapshot of the delegate had already been obtained for the purpose of invoking

    by 2, I mean the usual pattern (to prevent a null-ref during invoke):

    var handler = SomeEvent;
    // <===== another thread could unsubscribe at this point
    if(handler != null) handler(sender, args); // <== or part way through this invoke
    // (and it either case, have the event trigger even though they think they have
    // unsubscribed)
    

    For that reason, if you are coding complex multi-threaded code with events, you should code defensively such that the event firing after you think you have unsubscribed is not a problem.

    These nuances do not really impact single-threaded code.

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

Sidebar

Related Questions

I guess getView() is called for each item of the list, but my question
I guess my main question is, will this always work as long as I
I guess this is a simple question. I need to do something like this:
I guess my general question which I googled to no luck: Is there a
This is probably a simple question, but how do I know when a Storyboard
The following question is inspired by this blog entry at ajaxian.com and this comment
As seen in this question: Raising C# events with an extension method - is
Follow up question from What is a "rooted reference"? consider this code, for a
An asp.net (mostly webforms) team I work on has recently decided to make the
My question concerns Silverlight (but I guess WPF as well). Basically I know, how

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.