Click here to Skip to main content
15,867,833 members
Articles / Programming Languages / C#

Story of Equality in .NET - Part 4

Rate me:
Please Sign up or sign in to vote.
5.00/5 (18 votes)
21 Aug 2017CPOL6 min read 24.7K   18   4
This article is the continuation of the previous three articles regarding how Equality works in .NET, the purpose is to give developers a more clear understanding on how .NET handles equality for types.

Introduction

I hope that after reading the previous three posts, you have now understood how the .NET framework deals with the Equality using the virtual Object.Equals method and for most of the value types and for few of Reference types using IEquatable<T>. In this post, we will be discussing the C# equality operator provided by Microsoft. We will explore what the C# Equality operator does and how it works. After reading this post, I hope you will have a better understanding of what it means when you check for equality of two variables using == operator.

We will cover the following things:

  • We will be writing some code for comparing the == operator and Object.Equals behavior for the same parameters to see what happens, and we will see that the result is the same, but the mechanism used for both is different.
  • We will see how C# equality operator works for primitive types.

C# provides inequality operator as well, the syntax for which is !=. We will not be discussing this operator in detail because it is the negation of what equality operator does, so they are not that much different. For example, if a==b evaluates to true then a!=b should evaluate to false and vice versa. Apart from this difference, both the operators work exactly the same way. So, keep in mind that everything we will discuss in this post about equality operator also applies to the inequality operator, it will just inverse the return value.

The equality operator is used when we want to evaluate if two of the variables are equal or not. A lot of developers have a misconception that this operator is basically the same as Object.Equals method, and it is just a syntactical convenience provide by the C# language.

This is not actually true. It is being designed in a way that it often gives the same result by calling Object.Equals but that’s not always the case as the underlying mechanism is completely different.

Background

This article is the continuation of the previous three articles regarding how Equality works in .NET, the purpose is to give developers a more clear understanding on how .NET handles equality for types. You may want to read the previous posts as well:

== Operator and Primitive Types

We will see with example code how the equality operator uses different mechanism in reference to Object.Equals method.

C#
class Program
{
    static void Main(String[] args)
    {
        int num1 = 5;
        int num2 = 5;

        Console.WriteLine(num1.Equals(num2));
        Console.WriteLine(num1 == num2);

        Console.ReadKey();
    }
}

We are comparing two integers for equality using both ways, the first using Object.Equals overload for integer and the second one using C# equality operator and we will examine the generated IL code which will help us understand how they are different in mechanism.

Of course, when we will run this program, it will evaluate to true for both the statements, and you can test it on your machine as well. Since both the statements are the same, this makes us believe that both are using Object.Equals and checking two integers for equality.

What Happens Behind the Scenes

As we talked earlier, the == operator and Object.Equals work differently and we are going to see how it is which will be a proof to what we talked earlier. We will examine the IL generated for both the statements after compilation.

One thing to note here is that before doing this, you will need to build your project using Release build not debug, as debug code will generate a lot of unnecessary instructions that are helpful when we need to debug and also in debug build, it will use Object.Equals implementation for both, so that will not help you to see what we will discuss next.

For doing that, open the Visual Studio command prompt, for opening it, go to Start Menu >> All Programs >> Microsoft Visual Studio >> Visual Studio Tools>> Developer Command Prompt.

Image 1

Type ildasm on the command prompt, this will launch the ildasm which is used to look at the IL code contained in an assembly, it is installed automatically when you install Visual Studio, so you don’t need to do anything for installing it.

Image 2

Browse the folder where your executable is and open it using File Menu. This will bring up the IL code of your executable.

Image 3

Expand the Program class and double click the Main method. It will open up the intermediate language for Main method:

Image 4

You don’t need to understand all the code written in it, if you have not seen IL seen before, that may look complex to you, but you don’t need to understand all the instructions.

We will just look at the lines where the comparison is done for both ways to show you the difference, you can see the following line:

pIL_0007:   call       instance bool [mscorlib]System.Int32::Equals(int32)

Here, it is calling the Object.Equals implementation provided via IEquatable<int> for integer type, in IL we need to specify the method call using Fully Qualified name, so the above statements say to call Equals method which takes as int32 as parameter and method exists in System.Int32 type and this type exists in mscorlib assembly.

Now look at IL generated for second comparison which was done via equality operator, which is:

IL_0013:  ceq

You can see that call to Equals method in Int class is not called in this case, instead we have an IL instruction written ceq which says to compare the two values that are being loaded on the stack right now and perform equality comparison using CPU registers. So, C# equality operator uses ceq statement to do equality check for primitive types and it does not call the Object.Equals implementation provided by that primitive type.

Image 5

Summary

  • We compared the == operator with Object.Equals method in this post.
  • We saw that using == operator gives us the same result as calling Object.Equals but the underlying mechanism of == operator is different in IL as compared to Object.Equals, which is that it does not use the Object.Equals, instead it uses probably CPU registers to do the comparison.

You Might Also Like to Read

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer
Pakistan Pakistan
Ehsan Sajjad is a Microsoft Certified Professional, Microsoft Certified C# Specialist and he is also among the top users on StackOverflow from Pakistan with 50k+ reputation at time of writing this and counting.

He is a passionate software developer with around 5 years of professional experience in Microsoft Technologies both web and desktop applications and always open to learn new things and platforms especially in mobile application development and game development.

Some Achievements :

  • 5th Top Contributor from Pakistan on Stackoverflow.com
  • Top User in ASP.NET MVC from Pakistan on Stackoverflow.com
  • 21st June 2017 - Article of the Day - ASP.NET Community (Beginners Guide on AJAX CRUD Operations in Grid using JQuery DataTables in ASP.NET MVC 5)
  • 19th April 2017 - Article of the Day - ASP.NET Community (ASP.NET MVC Async File Uploading using JQuery)
  • March 2017 - Visual C# Technical Guru Silver Medal on Microsoft Tech Net Wiki Article Competition
  • 20 January 2017 - Article of the Day - ASP.NET Community (Async File Uploading in ASP.NET MVC)
  • 22nd September 2016 - Article of the Day - ASP.NET Community (GridView with Server Side Filtering, Sorting and Paging in ASP.NET MVC 5)
  • 22nd August 2016 - Article of the Day - ASP.NET Community (Beginners Guide for Creating GridView in ASP.NET MVC 5)
  • December 2015 - C-SharpCorner Monthly Winner

Comments and Discussions

 
GeneralMy vote of 5 Pin
wmjordan8-Sep-16 15:06
professionalwmjordan8-Sep-16 15:06 
QuestionWhat about reference types? Pin
Martin Giannechini Merello13-Jul-16 10:43
Martin Giannechini Merello13-Jul-16 10:43 
AnswerRe: What about reference types? Pin
Ehsan Sajjad13-Jul-16 10:46
professionalEhsan Sajjad13-Jul-16 10:46 
AnswerRe: What about reference types? Pin
Ehsan Sajjad28-Nov-16 5:27
professionalEhsan Sajjad28-Nov-16 5:27 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.