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 6215701
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T07:06:14+00:00 2026-05-24T07:06:14+00:00

I have a collection in c# For ex: Collection<User> List = null; I need

  • 0

I have a collection in c#
For ex:

Collection<User> List = null;

I need to filter it based on sum parameters. so lets say i want to filter out users whos userID is between 1 to 100.

Please advice how i can do this in c#

Thanks
Amit

  • 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-05-24T07:06:14+00:00Added an answer on May 24, 2026 at 7:06 am

    Assuming you’re using .NET 3.5 or higher, and you don’t need the filtering to be in place, just use LINQ:

    var filteredUsers = unfilteredUsers.Where(u => u.UserID < 1 || u.UserID > 100)
                                       .ToList();
    

    Note that this is filtering out users with IDs between 1 and 100 rather than filtering them in as per other answers.

    If this doesn’t help, please clarify the question. (Out of interest, why are you using Collection<T> to start with?)

    EDIT: If you really need a Collection<T> you can create one easily enough:

    var filteredUsers = new Collection<User>
           (unfilteredUsers.Where(u => u.UserID < 1 || u.UserID > 100)
                           .ToList());
    

    You could even add your own ToCollection extension method to make this simpler. But Collection<T> is usually meant to be the base class for more specific collection types (e.g. ObservableCollection<T>) – it’s odd to be constructing one directly. If your API is written in terms of Collection<T>, you should potentially change it to be written in terms of IList<T>, giving you more flexibility.

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

Sidebar

Related Questions

I want to have a User Control that takes a collection of People (property
I have multiple Users, each with a collection of Tasks. public class User {
I have a collection of users who completed a certain test and a list
I have collection of Questions as List. For each question I want to show
I have collection of documents Users User { Status: ACTIVE, Login: { UserName: login,
I have a user control that contains a collection of controls to be reused
I have created a site collection inside a web application with user A as
I have a table that is a collection entries as to when a user
I have Collection List<Car> . How to compare each item from this collection with
i am trying to return a list of users whose accounts have expired from

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.