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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T00:27:37+00:00 2026-06-01T00:27:37+00:00

In a .NET program that’s written to follow declarative style, what are some legitimate

  • 0

In a .NET program that’s written to follow declarative style, what are some legitimate uses for ReferenceEquals()?

  • 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-01T00:27:38+00:00Added an answer on June 1, 2026 at 12:27 am

    Not sure what you mean by “written to follow declarative style”, but ReferenceEquals is usually used when overriding the == operator. From http://msdn.microsoft.com/en-us/library/ms173147.aspx:

    public static bool operator ==(ThreeDPoint a, ThreeDPoint b)
    {
        // If both are null, or both are same instance, return true.
        if (System.Object.ReferenceEquals(a, b))
        {
            return true;
        }
    
        // If one is null, but not both, return false.
        if (((object)a == null) || ((object)b == null))
        {
            return false;
        }
    
        // Return true if the fields match:
        return a.x == b.x && a.y == b.y && a.z == b.z;
    }
    

    It is important to see the Note below for the justification:

    Note: A common error in overloads of operator == is to use (a == b), (a == null), or (b == null) to check for reference equality. This
    instead creates a call to the overloaded operator ==, causing an
    infinite loop. Use ReferenceEquals or cast the type to Object, to
    avoid the loop.

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

Sidebar

Related Questions

I have a vb.net program that uses mysql as its database. And it works
I have .NET program that can't be run from Visual Studio for some reasons
I am creating a .NET program that uses odp.net, specifically the 11g version. Our
We have a .NET program that uses WCF to listen for communication from another
I would like to write a C# .NET program that will do some transformations
I have written a small GUI based vb.net program that speaks to embedded devices
I have some custom user controls in my .net winforms program that do not
I have a .NET program that I've written a Wix installer for. I want
I have a C#/.NET program that can run both as a console application and
I have a .Net program that I want to install on a terminal server.

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.