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

BitStack() public méthode

Initialize stack.
public BitStack ( ) : System
Résultat System
        public BitStack() {
            // Set sentinel bit in 1st position.  As bits are shifted onto this.curr, this sentinel
            // bit shifts to the left.  When it's about to overflow, this.curr will be pushed
            // onto an unsigned int stack and the sentinel bit will be reset to 0x1.
            this.curr = 0x1;
        }