Ejemplo n.º 1
0
 /// <summary>
 /// Skip <paramref name="celt"/> elements and sets current element to next element of the collection.
 /// </summary>
 /// <param name="celt">Count of elements to skip.</param>
 /// <returns>
 /// true if the enumerator was successfully skip element;
 /// false if the enumerator has passed the end of the collection.
 /// </returns>
 public bool Skip(int celt)
 {
     enumItemAttributes.Skip(celt);
     return(MoveNext());
 }
Ejemplo n.º 2
0
 public void Skip(int p_CElt)
 {
     m_IfEnum.Skip(p_CElt);
 }