The following example describes how to perform foreach statement implemented using while statement. First the IEnumerable collection is asked to create new enumerator instance (which implements IEnumerator). Then it calls IEnumerator.MoveNext() method until it returns false. For each iteration it obtains value from IEnumerator.Current property. Workout and see the result should be same as that of foreach statement.
var names = new List<string>() { "Car", "Bike", "Bus" };
foreach (string name in names)
{
Console.WriteLine(name);
}//foreach performed using whilestatement
var enumerator = names.GetEnumerator();
while (enumerator.MoveNext())
{
string name = (string)enumerator.Current;
Console.WriteLine(name);
}
Output:
Car
Bike
Bus
Post your comments / questions
Recent Article
- How to fix CMOS Checksum Error in Computer or Laptop | SOLVED
- Reactivating windows after a Hardware change on PC or Laptop
- FIXED: Windows reported that the hardware of your device has changed. Error code :0xc004F211
- "redirect" is not defined pylance("reportUndefinedVariable)
- This action cannot be completed because the file is open in SQL Server(SQLEXPRESS) - FIXED
- Unicode error 'unicodeescape' codec can't decode bytes in position 2-3: truncated UXXXXXXXX escape
- Could not find the 'angular-devkit/build-angular:dev-server' builder's node package | Angular Error
- Error: error:0308010C:digital envelope routines::unsupported
Related Article