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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 8, 20262026-06-08T03:36:27+00:00 2026-06-08T03:36:27+00:00

I am trying to cast a WaitCallBack into an Action<object> I am doing this

  • 0

I am trying to cast a WaitCallBack into an Action<object>

I am doing this by:

WaitCallBack w1 = Foo;

Action<object> a1 = new Action<object>(w1);
Action<object> a2 = Foo;

However, when i try to compare the a1 with a2, it will return false.

Is there away to cast the delegates, so that the equality will be true?

Thanks.

  • 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-06-08T03:36:30+00:00Added an answer on June 8, 2026 at 3:36 am

    Delegates compare by method+target; the problem is that you are comparing different things!

    Perhaps it becomes clearer if we expand this line to what the compiler sees:

    Action<object> a1 = new Action<object>(w1);
    

    is actually:

    Action<object> a1 = new Action<object>(w1.Invoke);
    

    (using the implicit Invoke operation on a delegate)

    You you can see that the target is w1, and the method is Invoke. We can confirm this:

    Console.WriteLine(a1.Method.Name); // Invoke
    Console.WriteLine(ReferenceEquals(a1.Target, w1)); // true
    

    Compare to the other:

    Action<object> a2 = Foo;
    

    Here, the target is either null (if static) or this (if non-static), and the method is Foo. The delegates are not the same. It is correct that it reports false.

    You can check this chained operation manually, but it is a bit tedious, especially if you need to consider every combination/depth; but a trivial example:

    Delegate del = a1.Target as Delegate;
    if(del != null)
    {
        if(del.Method == a2.Method && del.Target == a2.Target)
        {
            Console.WriteLine("pass");
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am trying to cast a string into an object (which is a parameter
Trying to cast the return of objectAtIndex. (MyClass *)[myArray objectAtIndex:1].name; Can you cast inline
I'm trying to cast away const from an object but it doesn't work. But
Trying to do something like this: select 'Setup for Car ' + CAST(varchar(50), @CarID)
I am trying to create a screen cast for my new web app. I
I am trying to run this code : exec myStoredProcedure Cast('c5b48202-36af-4597-9780-5366d4188f55' AS uniqueidentifier), 744,
I'm trying to check if an object can cast to a certain type using
I am trying to cast kx.c class flip object to a string: String test
I am trying to cast a datastream into a struct since the datastream consists
Here's the problem I'm trying to cast form List to an object MyTypes which

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.