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

DiscardStack() 공개 메소드

Discard the current item if it is pushed onto the stack.
public DiscardStack ( ) : void
리턴 void
        public void DiscardStack() {
            if (this.storage.Location == ItemLocation.Stack) {
                this.helper.Emit(OpCodes.Pop);
                this.storage = StorageDescriptor.None();
            }
        }