/// <summary>
 /// Returns an enumerator that iterates through a collection.
 /// </summary>
 /// <returns>
 /// An <see cref="T:System.Collections.IEnumerator"></see> object that can be used to iterate through the collection.
 /// </returns>
 public IEnumerator GetEnumerator()
 {
     return(fileCollection.GetEnumerator());
 }
示例#2
0
 public override IEnumerator GetEnumerator()
 {
     return(_collection.GetEnumerator());
 }