Click here to Skip to main content
15,881,882 members
Articles / Programming Languages / Visual Basic

What is the Difference between “==” and .Equals()?

Rate me:
Please Sign up or sign in to vote.
4.82/5 (24 votes)
26 Apr 2013CPOL1 min read 110.1K   14   13
In this article, we will discuss what is the difference between "==" vs ".Equals in C#".

When we create any object, there are two parts to the object, one is the content and the other is reference to that content.

So for example, if you create an object as shown in the below code:

  1. “.NET interview questions” is the content.
  2. o” is the reference to that content.
C#
object o = ".NET Interview questions"; 

Image 1

==” compares if the object references are the same while “.Equals()” compares if the contents are the same.

So if you run the below code, both “==” and “.Equals()” returns true because content as well as references are the same.

 

Image 2

C#
object o = ".NET Interview questions";
object o1 = o;
Console.WriteLine(o == o1);
Console.WriteLine(o.Equals(o1));
Console.ReadLine();

True

True

Now consider the below code where we have the same content but they point towards different instances. So if you run the below code, both “==” will return false and “.Equals()” will return true.

Image 3

C#
object o = ".NET Interview questions";
object o1 = new string(".NET Interview questions".ToCharArray());
Console.WriteLine(o == o1);
Console.WriteLine(o.Equals(o1));
Console.ReadLine();

False

True

When you are using string data type, it always does content comparison. In other words, you either use “.Equals()” or “==” it always does content comparison.

You can also watch the following video of the above explanation at C# interview questions and answers: Difference between "==" and ".Equals()"?

Image 4

For further reading do watch the below interview preparation videos and step by step video series.

License

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


Written By
Architect https://www.questpond.com
India India

Comments and Discussions

 
QuestionNice Article Pin
poonamkalra0918-Feb-16 22:02
poonamkalra0918-Feb-16 22:02 
QuestionDiffcult to understand Pin
madan singh bora26-Jun-15 17:52
madan singh bora26-Jun-15 17:52 
QuestionAlways == does not do the content comparison for string Pin
gourav.agrawal28-Jan-15 1:45
gourav.agrawal28-Jan-15 1:45 
GeneralClear! Pin
Nicolas Mertens20-Jun-14 1:35
Nicolas Mertens20-Jun-14 1:35 
QuestionGood Explanation Pin
Member 1028643326-Feb-14 2:35
Member 1028643326-Feb-14 2:35 
GeneralMy vote of 5 Pin
M Rayhan3-Jan-14 17:51
M Rayhan3-Jan-14 17:51 
GeneralMy vote of 3 Pin
John Brett28-Apr-13 22:19
John Brett28-Apr-13 22:19 
GeneralRe: My vote of 3 Pin
Shivprasad koirala2-May-13 19:52
Shivprasad koirala2-May-13 19:52 
Generalsmth wrong Pin
mythteria26-Apr-13 21:32
mythteria26-Apr-13 21:32 
C#
object o = ".NET Interview questions";
object o1 = new string(".NET Interview questions".ToCharArray());
Console.WriteLine(o == o1); //false

oops. a good explanation can be found here.
http://stackoverflow.com/a/3678810[^]
GeneralRe: smth wrong Pin
Shivprasad koirala26-Apr-13 21:54
Shivprasad koirala26-Apr-13 21:54 
GeneralRe: smth wrong Pin
mythteria29-May-13 2:01
mythteria29-May-13 2:01 
GeneralRe: smth wrong Pin
Member 104448254-Dec-13 12:12
Member 104448254-Dec-13 12:12 

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.