Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8406303
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T23:04:28+00:00 2026-06-09T23:04:28+00:00

I have a List<T> where T is a custom object. None of my object

  • 0

I have a List<T> where T is a custom object. None of my object are equal but some might have an equal property. Is there any fast way to remove the duplicates by comparing the property? It doesn’t matter which of the duplicates stays in the list.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-09T23:04:29+00:00Added an answer on June 9, 2026 at 11:04 pm

    You can use List<T>.RemoveAll to do this efficiently.

    For example, if you wanted to remove all elements where the Foo property had a value of 42, you could do:

    theList.RemoveAll(i => i.Foo == 42);
    

    If you’re trying to make a list of distinct items by a property, ie: keep only distinct Foo items, I would recommend doing something like:

    HashSet<int> elements = new HashSet<int>(); // Type of property
    
    theList.RemoveAll(i => !elements.Add(i.Foo));
    

    This will track which elements are “distinct” and remove all others.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying to create a controller for a custom complex object but have some
Say I have a list of member, each of which is a custom object:
I have a custom list menu style but I am unsure how to align
Let's say I have a custom object of Foo Is there anyway I can
i have a list of custom object and i want to group the object
So I have a custom ListView object. The list items have two textviews stacked
I have a list of custom objects that I use as the commandName object
I have a List of custom object, which consist of a custom list. class
I have a custom object with several properties, one of which returns a list.
I want to implement custom JSP list tag, but have problem with accessing properties

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.