Click here to Skip to main content
15,891,864 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
All:

Why do we need to mention datatype of a variable inside foreach loop ?

C#
foreach(string strName in strFilePath)
{
   //Operations here
}


Why cannot we declare it outside?

C#
string strName = ""; 
foreach (strName in strFilePath)
{
   //Operations here
}
Posted
Updated 26-Jun-12 19:32pm
v2

1 solution

Because the variable used in a foreach loop is special - it has limited scope and is read only.

The declaration is a reminder (if you like) that it is a special value, and not to be treated like "normal" variables. It limits the scope of the variable to just the extent of the loop without complex machinations. Otherwise, it would imply that the read-only status could be changed (which it can't) or that any initial value from before the loop began could be referenced (which it can't).
 
Share this answer
 
Comments
Prasad_Kulkarni 27-Jun-12 1:39am    
Good answer OG! +5!

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900