System.Xml.BaseTreeIterator.NextRightRowElement C# (CSharp) 메소드

NextRightRowElement() 개인적인 메소드

private NextRightRowElement ( ) : bool
리턴 bool
        internal bool NextRightRowElement()
        {
            if (NextRight())
            {
                if (OnRowElement())
                {
                    return true;
                }
                return NextRowElement();
            }
            return false;
        }