Exemplo n.º 1
0
 /// <summary>
 /// Advances the enumerator to the next element of the collection.
 /// </summary>
 /// <returns>
 /// true if the enumerator was successfully advanced to the next element; false if the enumerator has passed the end of the collection.
 /// </returns>
 /// <exception cref="InvalidOperationException">The collection was modified after the enumerator was created. </exception>
 public bool MoveNext()
 {
     return(_enumerator.MoveNext());
 }
Exemplo n.º 2
0
 public bool MoveNext()
 {
     return(_e.MoveNext());
 }
Exemplo n.º 3
0
 bool IEnumerator.MoveNext()
 {
     return(_e.MoveNext());
 }
Exemplo n.º 4
0
 bool System.Collections.IEnumerator.MoveNext()
 {
     return(e.MoveNext());
 }