/// <include file='IniSectionCollection.xml' path='//Method[@name="GetEnumerator"]/docs/*' />
 public IEnumerator GetEnumerator()
 {
     return(list.GetEnumerator());
 }
 /// <summary>
 /// Returns an enumerator that iterates through the collection.
 /// </summary>
 /// <returns>
 /// A <see cref="T:System.Collections.Generic.IEnumerator`1"/> that can be used to iterate through the collection.
 /// </returns>
 public IEnumerator <IRuleFlag> GetEnumerator()
 {
     return(_flags.GetEnumerator());
 }
Exemplo n.º 3
0
        /// <summary>
        /// Gets the enumerator for the SelectionSet
        /// </summary>
        ///
        /// <returns>
        /// The enumerator.
        /// </returns>

        public IEnumerator <T> GetEnumerator()
        {
            return(OrderedList.GetEnumerator());
        }
Exemplo n.º 4
0
 /// <include file='IniSectionCollection.xml' path='//Method[@name="GetEnumerator"]/docs/*' />
 public IEnumerator GetEnumerator()
 {
     return(_sectionNames.GetEnumerator());
 }