System.Xml.BitStack.PopCurr C# (CSharp) Méthode

PopCurr() private méthode

If all bits have been popped from this.curr, then pop the previous uint value from the stack in order to provide another 31 bits.
private PopCurr ( ) : void
Résultat void
        private void PopCurr() {
            if (this.stackPos > 0)
                this.curr = this.bitStack[--this.stackPos];
        }
    }