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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 21, 20262026-05-21T03:30:44+00:00 2026-05-21T03:30:44+00:00

I have a Crate object, which has a List of KeyValuePairs. Currently, I’m iterating

  • 0

I have a Crate object, which has a List of KeyValuePairs. Currently, I’m iterating through each pair to see if the kvp.Value.PixelsWide are the same for all items in the List. If they are, return true, else false.

The existing method that I have is shown below:

public bool Validate(Crate crate)
    {
        int firstSectionWidth = 0;
        foreach (KeyValuePair<string, SectionConfiguration> kvp in crate.Sections)
        {
            if (firstSectionWidth == 0)//first time in loop
            {
                firstSectionWidth = kvp.Value.PixelsWide;
            }
            else //not the first time in loop
            {
                if (kvp.Value.PixelsWide != firstSectionWidth)
                {
                    return false;
                }
            }
        }

        return true;
    }

I’m curious if this would be possible to execute in a LINQ query?

Thanks in advance for any help!

  • 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-21T03:30:44+00:00Added an answer on May 21, 2026 at 3:30 am

    I believe this would work:

    public bool Validate(Crate crate)
    {
        return crate.Sections
                    .Select(x => x.Value.PixelsWide)
                    .Distinct()
                    .Count() < 2;
    }
    

    This will return true if crate.Sections is empty as well as when the elements are all the same (which is the behavior of your current function).

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

Sidebar

Related Questions

So I have a Blog object which has a list of tag objects (
I have a List which I create from a DataTabe which only has one
I have a coffescript datastructure which consists of an object which has arrays of
I have an application which has to handle a list of objects (retrieved from
Okay here is the scenario! I have a Person object which has an Address
I have a native/unmanaged DLL and it has a CreateObject function which returns a
I have function some_func_1 which will create an object of type some_type and will
Currently I have this code var App = Ember.Application.create(); App.user = Ember.Object.create({ people: customers
I have an object which I create from the response from a webservice. If
i have a drop down list contains the name of reports and each report

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.