TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
C# Corner
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
About Equals
Share
facebook
twitter
linkedIn
Reddit
Topics
No topic found
Content Filter
Articles
Videos
Blogs
News
Complexity Level
Beginner
Intermediate
Advanced
Refine by Author
[Clear]
Gopi Chand (2)
Arunava Bhattacharjee (2)
Hamed Niazmand (1)
Lokendra Singh (1)
Ehsan Sajjad (1)
Amr Monjid (1)
C# Curator (1)
Ritesh Sharma (1)
Sandeep Singh Shekhawat (1)
Oodit Jethwa (1)
Praveen Kumar (1)
Venkatasubbarao Polisetty (1)
Pradeep Shet (1)
Roman Sakno (1)
Pritam Zope (1)
Prakash Tripathi (1)
Tom Mohan (1)
Sourav Kayal (1)
Anubhav Chaudhary (1)
Mahesh Chand (1)
Related resources for Equals
No resource found
How to Compare Two Objects in C#
10/3/2024 7:08:40 AM.
In this article, we’ll walk through how to create a generic method that can compare the objects of any class, even those with nested collections. We’ll break it down step by step so you can implement
Understanding Equals Method and == Operator in Java
5/24/2024 6:14:23 AM.
In Java, the Equals method compares the content of objects for equality, while the == operator checks if they refer to the same memory location. Understanding their distinction is crucial for accurate
Understand Virtual Object.Equals, Static Object.Equals and Reference.Equals in Object Class
5/1/2024 11:12:00 AM.
In the Object class of C#, the Equals method can be overridden, creating virtual and static versions. Virtual Equals compares content, static compares references, while Reference. Equals provide refer
Overriding The System.Object Class Methods
9/15/2023 9:48:55 AM.
In this article you will take a look on the Object class the base class for all data types in the .NET Framework. You will see also how to give your custom type a new look by overriding the Object cla
The Object Class in .NET
9/5/2023 8:34:30 AM.
All the types in .NET are represented as objects and are derived from the Object class.
Comparing Complex Type With ==, Equals, IEquatable and IComparable in C#
9/5/2023 4:49:28 AM.
In C#, when comparing complex types (objects) for equality and ordering, you have several options and methods available, each with its own purpose and behavior. Here's an overview of how to compar
Difference Between Equality Operator ( ==) and Equals() Method in C#
6/7/2023 10:08:40 AM.
Both the == Operator and the Equals() method are used to compare two value type data items or reference type data items. This article explains the basic difference between these two.
Trigger Condition Expression - SharePoint Columns Compare And Trigger Only If Not Equal
2/22/2023 10:35:11 AM.
Power Automate Flow - Trigger condition expression - SharePoint Columns Compare and trigger only if not equal.This article will explain how we can create an automated MS flow with a trigger conditi
Introduction to C#
4/26/2022 10:02:58 AM.
This article concentrates on C# language programming.
Usage of Equals Function in Power Automate
12/2/2021 11:19:34 AM.
In Power Automate, at times we must validate two values and proceed further if result is true, in these scenarios Equals function is used. As a scenario, name of the person and current years values we
Using Triple Equals Operator in JavaScript
4/30/2020 7:37:24 AM.
This article explains the use of the triple equals operator instread of the double equals operator in JavaScript.
Fast Equality Comparison
10/11/2019 8:53:19 AM.
How to compare value types, arrays and determine whether the value is default value of particular type fast.
String Class Methods in Java: Session 6
9/24/2019 6:31:17 AM.
This article explains a few more methods of strings in Java with easy code examples to understand better.
String Class Methods in Java: Session 5
9/24/2019 6:27:58 AM.
This article will help you to learn a few more methods of strings in Java with easy code examples to understand better.
Creating Java String Functions in C/C++
4/24/2016 6:05:01 PM.
In this article we will create string functions used in Java, such as charAt() ,compareTo(),equals(), equalsIgnoreCase(), indexOf(), startsWith()/endsWith(), substring(), isLetter(), isDigit() etc.. i
Preparing .NET Interview - Part Five (Equality)
3/28/2016 9:47:25 AM.
This article presents the common questions asked in .NET interviews related to equality and explains the answers in an easy way.
Importance of Equals Method in C#
4/9/2015 3:05:04 PM.
In this article we will learn the importance of the Equals method of C#.
Working With .NET Equality Features
3/25/2015 10:04:55 PM.
This article explains how to work with .NET Equality Features.
How Distint Method is Used by the Framework
8/27/2014 11:35:04 PM.
Distinct()/Contains() is not working properly?See how collection operation depends on Equals() implementation
Important Interface in .NET: Work With IEqautable Interface
2/25/2014 3:39:30 PM.
In today’s article we will understand the uses of the IEquatable interface of the .NET class library.
Compare Two Values Using angular.equals
2/7/2014 4:46:53 PM.
In this article I will tell you how to compare two values using angular.equals.
Effective C#: Working with Strings
1/3/2006 7:03:31 AM.
Using string might degrade the performance of your application. This article explains about what precautions you should take when you are going to use strings in your application.