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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T01:40:35+00:00 2026-05-28T01:40:35+00:00

I have an Object named Item: public class Item { public Guid Id {

  • 0

I have an Object named Item:

public class Item
{
   public Guid Id { get; set; }
   public long Size { get; set; }       
}

in a List<Item>

What I need is to query this list and return a number of rows where the
cumulated size (Size property of Item) does not exceed a certain number (threshold).

I could then process these elements, remove them from the original list and get the next
elements with the same query until all elements have been processed.

Example List:

Id       Size
----------------
1         10
2         13
3         5
4         30
5         10

Say my desired threshold is a maximum size of 25.

The query should return the items with Id 1 & 2 since their cumulated size doesn’t exceed
25. Then I remove these two values. The next time the query should return 3 & 5.
Id 4 should never be returned since it exceeds 25.

Any ideas?

  • 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-28T01:40:36+00:00Added an answer on May 28, 2026 at 1:40 am

    I think you need to store some running sum value, but TakeWhile should do the job.
    Something like this:

    var someValues = Enumerable.Range(0, 100);
    var runningSum = 0;
    var whereSumLessThan100 = someValues.TakeWhile(
        item => { runningSum += item; return runningSum < 100; }).ToList();
    foreach(var item in whereSumLessThan100)
        Console.WriteLine(item);
    Console.WriteLine("Sum: " + whereSumLessThan100.Sum());
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have this class public class Item { public Coordinate coordinate { get; set;
I have a model class public class Item { public string Name {get; set;}
I have a class named WhatClass that has List field in it. I need
I have an object like this public class Employee { public int EmployeeId {
I have the following code (changed object names, so syntax/spelling errors ignore). public class
I have a simple object as such: public class Info { public string Name
I have a collection named as MenuItemCollection and this derived form List< MenuItem >
I have a list of items. Item is a object with two fields. One
I have an Object base class, and I have several derived classes called Item,
I have two classes: public class Person { public string FirstName { get {

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.