I don't understand which types of classes can use foreach loops. Please help!
|
4
|
|||||
|
|
|
Just call foreach loops on any classes that implement the IEnumerable and IEnumerator classes... ie:
|
||||||||
|
|
|
From MSDN:
So, if you have an array, you could use the foreach statement to iterate through the array, like so:
You could also use it to iterate through a
|
||||
|
|
|
Actually, strictly speaking, all you need to use By implication, this includes anything that implements For proof of the first point, the following works just fine:
How does it work? A foreach loop like
However, there are variations. For example, it the enumerator (tmp) supports Note that the positioning of " |
||||||||
|
|
|
According to this post (http://blogs.msdn.com/kcwalina/archive/2007/07/18/DuckNotation.aspx) duck typing is used. |
||
|
|
|
|
Here's the docs: Main article With Arrays With Collection Objects It's important to note that "The type of the collection element must be convertible to the identifier type". This sometimes cannot be checked at compile time and can generate a runtime exception if the instance type is not assignable to the reference type. This will generate a runtime exception if there is an non-Apple in the fruit basket, such as an orange.
This safely filters the list to only the Apples using Enumerable.OfType
|
||
|
|
|
|
I think the best answer given by "Marc Gravell" but I want to add some notes: do not change your IEnumerable object inside the foreach do not change your Iterator object inside the foreach avoid foreach on the collections that are being used by different threads except you are handling this matter |
||
|
|
