Recurity.Swf.AVM1.ActionPushDuplicate.ActionPushDuplicate C# (CSharp) Method

ActionPushDuplicate() public method

Pushes a duplicate of top of stack (the current return value) to the stack.
public ActionPushDuplicate ( ) : System
return System
        public ActionPushDuplicate()
        {
            _StackOps = new StackChange[ 1 ];
            _StackOps[ 0 ] = new StackPush( AVM1DataTypes.AVM_ANY );
        }
ActionPushDuplicate