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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T02:43:53+00:00 2026-05-16T02:43:53+00:00

I have a list with a boolean value as one of the properties. I

  • 0

I have a list with a boolean value as one of the properties. I need to check if every one of these is true. Now normally LINQ would give a nice clean answer here, but as I am using .NET 2.0 I can’t use that.

If there a nicer way to do this or am I going to have to do a for each loop and break out on finding a false?

Edit:
Seems I could have been a bit clearer. I have an object in a list (eg List (Of MyObject)). There is a boolean property on this object called Processed.

I need to check that all objects in the list are processed.

So in LINQ I’d do:
if (from o in list where o.processed = false select o).count = 0 then....

  • 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-16T02:43:54+00:00Added an answer on May 16, 2026 at 2:43 am

    You could write your own generic list implementation an add a property IsProcessedCompletely:

     Public Class My_Class
            Public Property IsProcessed() As Boolean
                Get
                End Get
                Set(ByVal value As Boolean)
                End Set
            End Property
        End Class
    
        Public Class My_List
            Inherits List(Of My_Class)
    
            Public ReadOnly Property IsProcessedCompletely() As Boolean
                Get
                    Dim enumerator As List(Of My_Class).Enumerator = MyBase.GetEnumerator
                    While enumerator.MoveNext
                        If Not enumerator.Current.IsProcessed Then
                            Return False
                        End If
                    End While
                    Return True
                End Get
            End Property
        End Class
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have the following CAML query: <Where> <And> <Eq> <FieldRef Name='PublishToSM' /> <Value Type='Boolean'>True</Value>
I have a list of items and wish to set one of their properties
I have the following code which takes List of boolean as a parameter then
I have some filters expressed as a list of function List(MyClass => Boolean) .
I have a boolean property IsActive. In the view is a list of objects
I have PostgreSQL table with several boolean columns, currently containing only true or null
I have a UserControl class in a Windows Application project. One of the properties
I have list of input area in the form with id like contact1_title, contact2_title,
I have list of articles on the page in table and i want to
I have list of structure. I want to modify a particular data from the

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.