System.Xml.Xsl.XsltOld.TemplateBaseAction.AllocateVariableSlot C# (CSharp) Method

AllocateVariableSlot() public method

public AllocateVariableSlot ( ) : int
return int
        public int AllocateVariableSlot() {
            // Variable placement logic. Optimized
            int thisSlot = this.variableFreeSlot;
            this.variableFreeSlot ++;
            if(this.variableCount < this.variableFreeSlot) {
                this.variableCount = this.variableFreeSlot;
            }
            return thisSlot;
        }