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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T17:40:15+00:00 2026-05-24T17:40:15+00:00

In for loop case I can declare the index outside the for statement. For

  • 0

In for loop case I can declare the index outside the for statement. For example, instead of

for (int i = 0; i < 8; i++) { }

I can do:

int i;
for (i = 0; i < 8; i++) { }

Now in compare to foreach loop, I have to declare the variable inside the loop:

foreach (string name in names) { }

And I cannot do something like:

string name;
foreach (name in names) { }

The reason this bothers me is that after the loop I want to use the variable “name” again. In case of foreach loop the variable “name” can’t be used since it outside of the foreach scope, and I cannot declare another variable with the same name since it declared before in the same scope.

Any idea?

  • 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-24T17:40:16+00:00Added an answer on May 24, 2026 at 5:40 pm

    Well, you can do:

    string name = null; // You need to set a value in case the collection is empty
    foreach (string loopName in names)
    {
        name = loopName;
        // other stuff
    }
    

    Or more likely:

    string name = null; // You need to set a value in case the collection is empty
    foreach (string loopName in names)
    {
        if (someCondition.IsTrueFor(loopName)
        {
            name = loopName;
            break;
        }
    }
    

    If the contents of the foreach loop is just to find a matching element – which at least sounds likely – then you should consider whether LINQ would be a better match:

    string name = names.Where(x => x.StartsWith("Fred"))
                       .FirstOrDefault();
    

    Using LINQ can often make code which is basically trying to find something a lot simpler to read.

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

Sidebar

Related Questions

How can I enclose a foreach -loop inside a switch -statement? I've got something
In PHP, While using a switch case loop, can i use the for loop
the MySQL manual says that a CASE statement (the WHEN part) can contain a
I have a loop like: String tmp; for(int x = 0; x < 1000000;
NOTE: I know I can move the declaration outside the loop. I want to
How do you limit the CPU of a while loop? In this case, the
/// \todo Loop must be rewritten ... /// \todo Delete this loop Can Doxygen
How do I loop into all the resources in the resourcemanager? Ie: foreach (string
I'm little confused as in how can I use do-while loop in an associative
I have a case where I need to construct following structure programmatically (yes 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.