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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 18, 20262026-05-18T06:32:27+00:00 2026-05-18T06:32:27+00:00

Consider the following: public class Box { public BoxSize Size { get; set; }

  • 0

Consider the following:

public class Box
{
    public BoxSize Size { get; set; }

    public IEnumerable<Box> Contents { get; set; }
}

Box FindBoxBySize(Box box, BoxSize size)
{
    Box _foundBox = null;

    Action<IEnumerable<Box>> _recurse = null;

    _recurse = new Action<IEnumerable<Box>>(boxes =>
    {
        foreach (var _box in boxes)
        {
            if (_box.Size == size)
            {
                _foundBox = _box;

                return;
            }

            if (_box.Contents != null) _recurse(_box.Contents);
        }
    });

    _recurse(box.Contents);

    return _foundBox;
}

Is there any way that FindBoxBySize() can be compacted using LINQ? Also: comments on my code are welcome. I don’t do much recursion, so I might have missed something in my implementation.

  • 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-18T06:32:28+00:00Added an answer on May 18, 2026 at 6:32 am

    I’d also take the extension method approach, but use an iterator method:

    public static class BoxEx
    {
        public static IEnumerable<Box> Flatten(this Box box)
        {
            yield return box;
            if (box.Contents != null)
            {
                foreach (var b in box.Contents.SelectMany(b2 => Flatten(b2)))
                {
                    yield return b;
                }
            }
        }
    }
    

    Your FindBoxBySize method now becomes:

    Box FindBoxBySize(Box box, BoxSize size)
    {
        return (from b in box.Flatten()
                where b.Size == size
                select b).FirstOrDefault();
    }
    

    Your original calling code works without modification:

    var small = FindBoxBySize(box, BoxSize.Small);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Consider the following class public class Class1 { public int A { get; set;
Please consider the following code: public class Person ( public string FirstName {get; set;}
Consider the following class: public class ComponentA { public ComponentB ComponentB { get; set;
consider the following class: public class ShortName { public string ValueString { get; set;
Consider the following example: public class BaseClass { public string StringInBaseClass {get;set;} public int
Consider the following class hierarchy: public class Foo { public string Name { get;
To illustrate my question consider the following example: @Entity public class Box implements Serializable
Consider following code public class City { public string Name { get { return
Consider the following scenario: public class Entity1 { virtual public Int32 ID { get;
Consider the following case: public class A { public A() { b = new

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.