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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T18:28:05+00:00 2026-06-09T18:28:05+00:00

I am new to lambda expressions; I am learning by implementing them. I have

  • 0

I am new to lambda expressions; I am learning by implementing them. I have a question on how to convert a for-loop into a lambda expression.

EnumHelper.GetEnumFromString is a helper method that takes the string description and sends back the enum.


 [Flags]
    public enum Colors
    {
        [DescriptionAttribute("YL")]
        Yellow = 1,
        [DescriptionAttribute("RD")]
        Red = 2,
        [DescriptionAttribute("GR")]
        Green = 4
    }

 string colorStr = "GR,RD";
 List<Colors> clrs = colorStr.Split(new char[] { ',' }).Select(p => EnumHelper.GetEnumFromString<Colors>(p)).ToList();
 Colors currentValidColors = Colors.Green;

    for (int i = 0; i < clrs .Count; i++)
    {
         if (i == 0)
              currentValidColors = clrs [i];
          else
              currentValidColors = currentValidColors | clrs [i];
    }

  • 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-06-09T18:28:06+00:00Added an answer on June 9, 2026 at 6:28 pm

    Is this what you are thinking of? ForEach extension method is only available for generic lists.

    Colors currentValidColors = 0;
    colorStr.Split(new char[] { ',' })
    .Select(p => EnumHelper.GetEnumFromString<Colors>(p))
    .ToList()
    .ForEach(c => currentValidColors |= c);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Question: I have just wrote my first code using c# lambda expressions. It works,
I'm new to lambda expressions, and just ran into something I don't understand. I
I'm trying the lambda-expressions from the new standard, and still don't understand them quite
I'm new to Lambda expressions so have been experimenting from an hour. I have
Is it possible to use the new lambda expressions in Visual C++ 2010 as
How can I combine two lambda expressions into one using an OR ? I
I'm new to lambda expressions and looking to leverage the syntax to set the
Probably something simple, but as I'm new to lambda expressions, the problem evades me:
I'm very new to linq and lambda expressions. I'm trying to walk a collection,
I am learning lambda expression and delegates.While i try to execute the following ,I

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.