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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T08:52:39+00:00 2026-05-11T08:52:39+00:00

A coworker used a for loop to iterate a List in some C# code

  • 0

A coworker used a for loop to iterate a List in some C# code he wrote and left the comment, ‘did’t use For Each because I wasn’t sure it iterates in order. Who knows what Microsoft will do.’ For example, suppose we have a List built up like this:

var someList = new List<string>();  someList.Add('one'); someList.Add('two'); someList.Add('three'); 

my coworker used something like this:

for (int i = 0; i < someList.Count; i++)     {     System.Diagnostics.Debug.WriteLine(someList[i]); } 

instead of this:

foreach (var item in someList)               {     System.Diagnostics.Debug.WriteLine(item); } 

I guess he’s afraid the items might come out in a different order than they were added to the collection. I think he’s being a bit paranoid, but technically, the documentation does not state the order in which the collection is iterated. Is it possible for a foreach statement to traverse an array or collection object in any order other than from lowest bound to highest?

  • 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-11T08:52:40+00:00Added an answer on May 11, 2026 at 8:52 am

    Your question is regarding a List<T>, which does maintain order.

    foreach, alone, is not guaranteed to do anything. It just asks the object provided for its enumerator, which could do anything, potentially.

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

Sidebar

Related Questions

A coworker recently wrote a program in which he used a Python list as
A coworker asked me to look at indexing on some tables because his query
Today I had a coworker suggest I refactor my code to use a label
My coworker is trying to register some COM components (which I wrote) via RegAsm.exe
My coworker and I have encountered a nasty situation where we have to use
A coworker of mine mentioned that one use of XSLT is processing business rules.
A coworker has been using a custom AVI to indicate progress during some longer
I never really thought about this until I was explaining some clojure code to
I came across some PHP code that was written by a co-worker (it was
My coworker is telling me I shouldn't use id's for paragraph tags... I think

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.