示例#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());
 }
示例#2
0
 public bool MoveNext()
 {
     return(_e.MoveNext());
 }
示例#3
0
 bool IEnumerator.MoveNext()
 {
     return(_e.MoveNext());
 }
示例#4
0
 bool System.Collections.IEnumerator.MoveNext()
 {
     return(e.MoveNext());
 }