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 IComparer
Share
facebook
twitter
linkedIn
Reddit
Topics
No topic found
Content Filter
Articles
Videos
Blogs
News
Complexity Level
Beginner
Intermediate
Advanced
Refine by Author
[Clear]
Bechir Bejaoui (2)
Ehsan Sajjad (1)
Shakti Saxena (1)
Mike Gold (1)
Rikam Palkar (1)
Munib Butt (1)
Arunava Bhattacharjee (1)
Dea Saddler (1)
Abhishek Bhat (1)
Ashish Jaiman (1)
Related resources for IComparer
No resource found
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
IComparable, IComparer And IEquatable Interfaces In C#
11/23/2022 10:13:38 AM.
In this article you will learn about IComparable, IComparer And IEquatable Interfaces In C#.
Using IComparable and IComparer to compare objects
8/23/2022 6:13:42 AM.
This article informs you that the .Net framework and especially the System.Collection namespace provides us two built in interfaces witch are IComparable and IComparer interfaces that enables us compa
Programming in C#: Understanding the SortedDictionary Class
8/22/2022 9:32:21 AM.
This article illustrates a powerful collection in C#, the SortedDictionary. In the article we will discuss two ways to sort key-value pairs: using an IComparer object and using IComparable keys.
IComparable Vs IComparer Interface In C#
6/22/2020 10:08:39 AM.
These 2 interfaces are basically use to sort user defined object collections
Using The IComparable And IComparer Interface In C#
5/18/2020 9:29:05 AM.
One of the most used functionalities in our C# classes is the ability to sort the different instances of a class. This is mostly done when we create a generic List of our class type and next, we want
All About Sorting in C#
9/5/2014 2:18:05 PM.
In this article you will learn how to use IComparable<> or IComparer<> and how it can be replaced by LINQ.
Using IComparable and IComparer to compare objects in VB.NET
12/1/2012 2:39:59 AM.
The .Net framework and especially the System.Collection namespace provides us two built in interfaces witch are IComparable and IComparer interfaces in order to compare two objects.
Object Expression in F#
7/21/2011 7:28:29 PM.
This article is a demonstration regarding Object Expression and IComparer interface. Have a quick review to learn.
Using IComparer IComparable for Sorting in WPF
1/27/2011 10:22:37 PM.
Implementation of IComparable in WPF. Here, we implement the CompareTo method and sort the Emp objects based on Age property.
Sorting Object Using IComparer and IComparable Interfaces
5/30/2009 1:22:16 AM.
The System.Collections namespace contains interfaces and classes that define various...