System.Xml.Xsl.IlGen.IteratorDescriptor.EnsureNoStack C# (CSharp) 메소드

EnsureNoStack() 공개 메소드

If the current item is on the stack, move it to a local variable.
public EnsureNoStack ( string locName ) : void
locName string
리턴 void
        public void EnsureNoStack(string locName) {
            if (this.storage.Location == ItemLocation.Stack)
                EnsureLocal(locName);
        }