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 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

Ask A Question

Stats

  • Questions 88k
  • Answers 88k
  • 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 UITextField* f = [[UITextField alloc] init]; f.autocorrectionType = UITextAutocorrectionTypeNo; May 11, 2026 at 5:41 pm
  • Editorial Team
    Editorial Team added an answer You are missing a $ symbol. I think $var=@&_GET['q']; should… May 11, 2026 at 5:41 pm
  • Editorial Team
    Editorial Team added an answer You could investigate the jQuery Metadata plugin, which can store… May 11, 2026 at 5:41 pm

Related Questions

If I have a Python script that requires at least a particular version of
Background In Visual Studio 2008 Create a new Windows Forms Application, this will create
I have a coworker who writes unit tests for objects which fill their fields
Today I had a coworker suggest I refactor my code to use a label

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.