Home  >  Article  >  Backend Development  >  C# object compare

C# object compare

PHPz
PHPzOriginal
2024-09-03 15:03:50908browse

C# object compares plays out a case-delicate correlation of two objects of a similar sort and returns a worth demonstrating whether one is not exactly, equivalent to, or more prominent than the other. C# has a lot of administrators and a few of them are utilized to look at values. This is an exceptionally basic errand when programming – to check how at least two qualities identify with one another.

Syntax:

Public int compare(object s, object p)

Where,

S and p are the first and second objects to compare.

It returns an integer value that represents the values of both the objects s and p.

How to compare objects in C#?

Now we see an example of how object compares works in C#.

Example #1

using System;
using System.Collections.Generic;
class Someone
{
public string Name { get; set; }
}
class Ex
{
static void Main()
{
var someone = new List<Someone> {
new Someone { Name = "Spandana Rao" } };
Console.WriteLine(
someone.Contains(
new Someone { Name = "Spandana Rao" }));
}
}

Output:

C# object compare

In the above program, the program produces an output of false. In order to make it true, we need to make a sort without abrogating the Equals technique or executing the IEquatable interface you surrender authority over how two examples of your sort will be analyzed and acknowledge the CLR’s default correlation systems. On the off chance that your sort is a reference type (a class) you will get character balance and if your sort is a worth kind (a struct) you will get esteem balance.

At the point when you look at two cases of a reference type (like the Person type in my first model) the CLR will contrast the references with the items to check whether the references highlight a similar article. Two reference types may be equivalent if their reference focuses to a similar item on the oversaw stack. On the off chance that the references are unique, at that point objects are not equivalent – regardless of whether their fields are indistinguishable.

C# value equality is an alternate cycle yet is a lot more straightforward to comprehend. Worth uniformity takes all occurrence fields of a worth sort and thinks about them to the occasion fields of a second example in individual request. I would envision that esteem balance works a lot of the manner in which most designers expect all correspondence checks should.

Each time you utilize the parallel equity administrator (==) or the Equals technique on a reference type you are summoning Object. Equals for the occasions being referred to. In the event that you wish to offer some incentive balance the most evident activity is to supersede System.Object.Equals and utilize this technique to think about the fields of your two occurrences. This methodology isn’t type-safe. Since the Equals strategy acknowledges a contention of type Object we can’t ensure that the occurrence that was passed to this technique is a Person.

This interface was planned explicitly to help us tackle the sort of wellbeing issue that we are confronting. As should be obvious, this interface enables us to make a specific supersede of our current Equals strategy. Since we have a specifically Equals strategy any correspondence examinations that are done on two occasions of our sort will be type-protected and invalid safe. Utilizing the as cast in the default superseded execution of Equals permits us to pass either an occasion of Person or invalid and our usage of IEquatable. Equals return bogus which guarantees that our strategies won’t fizzle for invalid.

GetHashCode strategy is a basic piece of personality equity checks. A hash code is a basic worth that speaks to the condition of the current example. Essentially, if two cases have a similar hash code, they might be equivalent regarding esteem. Yet, on the off chance that two articles don’t have a similar hash code they are assuredly not equivalent as far as worth. This technique permits our considering code and exhibition support by not calling Equals if the hash codes don’t coordinate. With respect to the appropriate or most ideal approach to create a hash code for an item example, that is a conversation for one more day. All we are doing here is taking two coprime numbers (23 and 37) and utilizing them to control the hash codes of our occurrence’s state to show up at a last essential worth. Once more, how the user works aren’t significant now, what is significant is that we are giving some execution so we can receive the exhibition rewards that GetHashCode can give. Presently we have a class that appropriately offers some benefit correspondence semantics.

Conclusion

Hence, I would like to conclude by stating that, since the base Object. Equals technique is set apart as virtual you can supersede it in any class that gets from Object, which is well, everything. Note how that changes the consequence of p1.Equals(p3) since it’s presently looking at the name and age rather than the reference.

The above is the detailed content of C# object compare. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Previous article:C# URL EncodeNext article:C# URL Encode