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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 19, 20262026-05-19T21:59:31+00:00 2026-05-19T21:59:31+00:00

From MSDN : Any method that matches the delegate’s signature, which consists of the

  • 0

From MSDN:

Any method that matches the delegate’s
signature, which consists of the
return type and parameters, can be
assigned to the delegate.

So how is this possible:

public delegate void AlarmEventHandler(object sender, EventArgs e);
public event AlarmEventHandler Alarm;

protected virtual void OnAlarm(EventArgs e)
        {
            AlarmEventHandler handler = Alarm;
            if (handler != null)
            {
                // Invokes the delegates.
                handler(this, e);
            }
        }

delegate AlarmEventHander and event AlarmEventHandler have different signatures yet handler can be assigned to Alarm.

Perhaps I’m mis-understanding delegates somewhat, and I would be very grateful if someone could explain where I’m going wrong.

  • 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-19T21:59:32+00:00Added an answer on May 19, 2026 at 9:59 pm

    A delegate is like a class. An event is like a property. When you declare an event in a class, you declare the type of event it is. In this case, AlarmEventHandler, which is an inner class of the top-level class this is a part of.

    In the OnAlarm method, you get the instance of the AlarmEventHandler class that has been assigned to the event, and invoke it.

    To clear things up, your code above is similar to this, using normal classes & references:

    public class InnerClass {
        public void MyMethod() { /* ... */ }
    }
    
    public InnerClass MyProperty { get; set; }
    
    protected virtual void CallMyMethod() {
        InnerClass cls = MyProperty;
        if (cls != null)
            cls.MyMethod();
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

From MSDN doc : A delegate is a type that safely encapsulates a method,
I have created an asynchronous server that can read in messages from any number
From MSDN Types that implement IComparable must override Equals.Types that override Equals must also
From MSDN ( link ): The type PrintDocumentImageableArea has no public constructor. Hence, the
Why in this example from MSDN, in GetEnumerator method, PeopleEnum returns IEnumerator ? public
In accordance with the steps from MSDN , I can debug .net framework source
I have a receive callback from an async client method that is supposed to
[CrossPost From MSDN] I had a task that, I need to send a generic
I can't find much information on the return value for the BeforeSendRequest method of
I have a method that creates a DLL from a .cs file that is

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.