Whether the foreach loop uses interfaces IEnumerator and IEnumerable only for iterating the objects of custom types (classes) or also for iterating the built-in types(behind the scene)?
| ||||
|
feedback
|
|
Foreach doesn't depend on Behind the scenes it only needs a From MSDN: The collection type:
The type Enumerator (a class or struct) must contain:
From http://msdn.microsoft.com/en-us/library/aa288257(v=vs.71).aspx | |||
|
feedback
|
|
Define enumerator, no IEnumerable declaration.!
Somewhere in code can use :
| |||
|
feedback
|
|
foreach uses IEnumerable for both native and custom types. If you look at System.Array for example, which is the base for all array types, it implements IEnumerable. | |||
|
feedback
|
|
for-each is language construct and does not really differentiate between custom/built-in types. for each is not dependent on | |||
|
feedback
|