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

  • Home
  • SEARCH
  • 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 79827
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 10, 20262026-05-10T21:12:24+00:00 2026-05-10T21:12:24+00:00

In another question on SO I answered with code like the one below and

  • 0

In another question on SO I answered with code like the one below and got a comment that the LINQ-query probably was evaluated in every iteration of the for/each. Is that true?

I know that LINQ-querys does not executes before its items is evaluated so it seems possible that this way to iterate the result can make it run on every iteration?

Dim d = New Dictionary(Of String, String)()     d.Add('Teststring', 'Hello')     d.Add('1TestString1', 'World')     d.Add('2TestString2', 'Test')      For Each i As String In From e In d Where e.Value.StartsWith('W') Select e.Key     MsgBox('This key has a matching value:' & i)     Next 
  • 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. 2026-05-10T21:12:25+00:00Added an answer on May 10, 2026 at 9:12 pm

    NO… in a foreach, the ‘GetEnumerator’ is called only once (ever), and that is used going forward.

    EDIT: I put a statement here about the result set being stored temporarily… that’s only true for some cases… not this one, so I took it out.

    EDIT: Please forgive this for being overly verbose… but I wanted to show you what is happening… so here’s a Console app 🙂

    using System; using System.Collections.Generic; using System.Linq;  namespace ConsoleApplication1 {     class Program     {         static void Main(string[] args)         {             foreach (string item in MyCustomEnumerator()                 .Where(item => item.StartsWith('abc')))             {             Console.WriteLine(item);             }         }          static IEnumerable<string> MyCustomEnumerator()         {             Console.WriteLine(DateTime.Now);              yield return 'abc1';              Console.WriteLine(DateTime.Now);              yield return 'abc2';              Console.WriteLine(DateTime.Now);              yield return 'abc3';              Console.WriteLine(DateTime.Now);              yield return 'xxx';         }     } } 

    EDIT: This will result in a DateTime, then abc1, then a DateTime, then abc2, then a DateTime, then abc3, then a DateTime.

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

Sidebar

Ask A Question

Stats

  • Questions 99k
  • Answers 99k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer Your code violates a couple of the invariants for set_difference.… May 11, 2026 at 7:43 pm
  • Editorial Team
    Editorial Team added an answer I would recommend not using automatic properties at all for… May 11, 2026 at 7:43 pm
  • Editorial Team
    Editorial Team added an answer It would be easier to do this if you had… May 11, 2026 at 7:43 pm

Related Questions

I am still very new to Ruby (reading through the Pickaxe and spending most
I'm trying to parse the title tag in an RSS 2.0 feed into three
I have this piece of Javascript and it just won't work. I allready checked
Preamble So, this question has already been answered, but as it was my first

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.