Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion xml/System.Collections.Generic/IEnumerable`1.xml
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@
<format type="text/markdown"><![CDATA[

## Remarks
The returned <xref:System.Collections.Generic.IEnumerator`1> provides the ability to iterate through the collection by exposing a <xref:System.Collections.Generic.IEnumerator`1.Current> property .You can use enumerators to read the data in a collection, but not to modify the collection.
The returned <xref:System.Collections.Generic.IEnumerator`1> provides the ability to iterate through the collection by exposing a <xref:System.Collections.Generic.IEnumerator`1.Current> property. You can use enumerators to read the data in a collection, but not to modify the collection.

Initially, the enumerator is positioned before the first element in the collection. At this position, <xref:System.Collections.Generic.IEnumerator`1.Current*> is undefined. Therefore, you must call the <xref:System.Collections.IEnumerator.MoveNext*> method to advance the enumerator to the first element of the collection before reading the value of <xref:System.Collections.Generic.IEnumerator`1.Current*>.

Expand Down
Loading