Which types of classes can use foreach loops?
feedback
|
|
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 " | |||||||||||
feedback
|
|
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
| |||||
feedback
|
|
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
| |||
|
feedback
|
|
According to the blog post Duck Notation, duck typing is used. | ||||
|
feedback
|
|
I think the best answer given by "Marc Gravell" but I want to add some notes:
| ||||
|
feedback
|
|
Just call foreach loops on any classes that implement the IEnumerable and IEnumerator classes... ie:
| |||||||||||
feedback
|