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 equality
Share
facebook
twitter
linkedIn
Reddit
Topics
No topic found
Content Filter
Articles
Videos
Blogs
News
Complexity Level
Beginner
Intermediate
Advanced
Refine by Author
[Clear]
Ehsan Sajjad (10)
CSharp TV (10)
Matthew Cochran (3)
Kirtesh Shah (2)
Andrea Angella (2)
Alpesh Maniya (1)
Lokendra Singh (1)
Jaimin Shethiya (1)
Sandeep Singh Shekhawat (1)
Bikesh Srivastava (1)
Roman Sakno (1)
Juan Francisco Morales Larios (1)
Prakash Tripathi (1)
Tom Mohan (1)
Mukesh Nayak (1)
Related resources for equality
No resource found
C# Comparison Fundamentals: Best Practices and Tips
6/11/2024 4:25:21 AM.
Comparison operations are a fundamental aspect of programming in C#. Whether you're comparing primitive types, strings, or objects, or handling null values, understanding the nuances of comparison
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
Story Of Equality In .NET - Part One
4/26/2024 12:15:39 PM.
This content outlines the complexities of equality and comparison in .NET, diving into topics like reference vs. value equality, the role of interfaces, and issues with floating-point arithmetic. It e
Implementing Equality For Reference Types
4/25/2024 7:58:08 AM.
Learn how to implement equality for reference types in C# to compare objects based on their values rather than their references. Understand the complexities introduced by inheritance and null handling
C# 9 Record Types: Immutable Value Types, Syntax, & Usage
4/18/2024 9:30:53 AM.
Records in C# provide immutable data structures for representing data. They offer concise syntax for declaring classes with value-based equality, read-only members, and built-in methods like ToString(
C# - Understand Equality For Value Type And Reference Type
2/29/2024 9:55:15 AM.
In this article, you will learn about the nuances of equality comparison in C#, distinguishing between value types (like structs) and reference types (like classes). Understand how the == operator beh
C# 9.0 - Record Types
10/12/2023 6:54:36 AM.
In this article, you will learn about C# 9.0 - Record Types.
Equality Operator (==) With Inheritance And Generics In C#
8/21/2023 11:25:05 AM.
Equality Operator (==) With Inheritance And Generics In C#.
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.
Advanced C# Techniques for Better Code Performance
4/25/2023 6:59:33 AM.
In this article, we'll explore some of the techniques that can help you write faster, more efficient C# code.
Keynote: 7 Important Requirements for Any Successful Project - Code Quality & Performance Virtual Conference
6/21/2021 10:46:35 AM.
This is the Keynote session in Code Quality & Performance Virtual Conference and about 7 Important Requirements for Any Successful Project
Mob Programming and the Power of Flow - Code Quality & Performance Virtual Conference
6/21/2021 10:41:28 AM.
This session in Code Quality & Performance Virtual Conference is about Mob Programming and the Power of Flow
Analyzing Code in .NET - Code Quality & Performance Virtual Conference
6/21/2021 10:34:42 AM.
This session in Code Quality & Performance Virtual Conference is about Analyzing Code in .NET
Unlocking Performance Improvements in .NET - Code Quality & Performance Virtual Conference
6/21/2021 10:22:13 AM.
This session in Code Quality & Performance Virtual Conference is about Unlocking Performance Improvements in .NET
Cloud Microservices to Serve the Next Billion - Code Quality & Performance Virtual Conference
6/21/2021 10:15:18 AM.
This session in Code Quality & Performance Virtual Conference is about Cloud Microservices to Serve the Next Billion
Testing Your Web Apps - Code Quality & Performance Virtual Conference
6/21/2021 10:11:44 AM.
This session in Code Quality & Performance Virtual Conference is about Testing Your Web Apps
Profile & Monitor Web Apps with Azure Application Insights - Code Quality & Performance Virtual Conference
6/21/2021 9:57:32 AM.
This session in Code Quality & Performance Virtual Conference is about Profile & Monitor Web Apps with Azure Application Insights
Code Quality & Performance with Xamarin - Code Quality & Performance Virtual Conference
6/21/2021 9:50:41 AM.
This session in Code Quality & Performance Virtual Conference is about Code Quality & Performance with Xamarin
Taking code to next level with Open Source (Git & Github) - Code Quality & Performance Virtual Conference
6/21/2021 9:40:08 AM.
This session in Code Quality & Performance Virtual Conference is about Taking code to next level with Open Source (Git & Github)
Rockin' The Code World with dotNetDave ft. Andy Schwam Ep. 23
5/8/2021 4:29:37 PM.
Join us with Andy Schwam on Rockin' The Code World with dotNetDave - a weekly show to learn & live Q&A on .NET and other programming technologies.
Story Of Equality In .NET - Part Six
1/14/2021 11:03:49 AM.
In this article, you will learn about equality in .NET.
Story of Equality in .NET - Part Four
1/3/2021 5:01:01 AM.
In this article, you will learn how equality operator (==) operates on Primitive types in C#
== Operator and Reference Types in C#
1/1/2021 5:54:25 AM.
In this article, you will learn how equality operator works behind the scene when comparing reference types
Introduction to IEquatable<T> interface in C#
11/12/2020 7:46:22 AM.
In this article, you will learn about IEquatable<T> interface and Equality in C#
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.
Practical C# - Equality
8/29/2017 4:45:19 AM.
Learn how to implement equality for value types and reference types in C# with some help from ReSharper.
Practical C# - Sequence Equality
8/18/2017 2:11:04 AM.
Learn how to check if two lists or sequences are equal using C#. Did you know Microsoft implemented this for you in the .NET Framework 3.5?
Implementing Equality In Value Type
8/2/2017 12:29:35 AM.
This post is to focus on implementing Equality in Value Types; i.e., overriding Equality behavior for our own implemented Value Types which is basically defining how to decide two object of a type are
Equality Operator And Value Types In C#
1/16/2017 11:50:01 PM.
In this article, you will learn about Equality Operator (==) behavior for non-primitive value types.
Introduction To Generic IEqualityComparer
11/27/2016 1:34:13 PM.
In this article, you will learn about Generic IEquality Comparer.
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.
Implementing Equality in C#
4/9/2015 12:50:52 PM.
Implementing equality can be tricky. If we follow a few simple rules we can avoid some of the common traps.
Modeling Equality in C#
4/9/2015 12:00:02 PM.
Modeling equality is more subtle than it first appears.
Equality Implementation in C#
3/31/2015 6:37:36 AM.
In this article you will learn Equality Implementation in C# programming.
Working With .NET Equality Features
3/25/2015 10:04:55 PM.
This article explains how to work with .NET Equality Features.
LinQ Operation
4/21/2014 4:41:37 PM.
Hi everybody, here in this article I want to raise a few basic things regarding the Distinct() extension method in “System.Linq” and we will explain how to customize our Distinct() method using "IEqualityComparer".