System.Xml.Xsl.Runtime.XPathPrecedingIterator.MoveNext C# (CSharp) Méthode

MoveNext() public méthode

Return true if the Current property is set to the next Preceding node in reverse document order.
public MoveNext ( ) : bool
Résultat bool
        public bool MoveNext() {
            if (stack.IsEmpty)
                return false;

            this.navCurrent = stack.Pop();
            return true;
        }
XPathPrecedingIterator