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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 17, 20262026-05-17T22:27:19+00:00 2026-05-17T22:27:19+00:00

I have an object of type Foo . Foo has an Id (int) a)

  • 0

I have an object of type Foo.
Foo has an Id (int)

a) Is the code bellow “good”?
b) What should I return if both are null?

// overload operator ==
public static bool operator ==(Foo a, Foo b)
{
    if (ReferenceEquals(x, y))
    {
        return true;
    }

    if (x == null && y == null)
    {
        return // ??? 
    }

    if (x == null || y == null)
    {
        return false; 
    }

    return x.Id == y.Id; // Ids are the same
}

public static bool Equals(Foo x, Foo y)
{
   return x == y;
}

EDIT:
c) Should the Equals method call the == operator, or viceversa?

Last question
d) Is it possible that
ReferenceEquals(x, y) == true AND x.Id != y.Id?

  • 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-17T22:27:19+00:00Added an answer on May 17, 2026 at 10:27 pm

    Yes

    null is nothing but internal Pointer with value zero. So it is comparing two references having value zero.

    In fact object.ReferenceEquals(null, null) is always true because of this fact so you do not need the second check.

    if (ReferenceEquals(x, y))
    {
        return true;
    }
    
    if (x == null && y == null) // THIS CHECK IS REDUNDANT!!!
    {
        return true;
    }
    

    On the last point, == and Equals are handled the same unless on the boxed value types:

            object s1 = 2;
            object s2 =  1+1;
    
            Console.WriteLine(s1 == s2);
            Console.WriteLine(s1.Equals(s2));
    

    This produces false and true.

    Point d: NO it is the same object, the same memory space – if they are pointing to a field on the object.

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

Sidebar

Related Questions

I have some JS code which generates the following object, return { type: some
I have an object of type bar which has an Array of many foo
I have object A which in turn has a property of type Object B
Let's say I have the following code: public class Foo { private int x;
I would like to return a noncopyable object of type Foo from a function.
I have a object of type ICollection<string> . What is the best way to
I have an object of the type System.Drawing.Image and want to make every pixel
Lets say I have a single object of type Car which I want to
What's the object type returned by Datepicker? Supposing I have the following: $(#txtbox).datepicker({ onClose:
I have an IQueryable and an object of type T. I want to do

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.