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

ActionAdd() public method

Adds two numbers and pushes the result back to the stack
public ActionAdd ( ) : System
return System
        public ActionAdd()
        {
            _StackOps = new StackChange[ 3 ];
            _StackOps[ 0 ] = new StackPop( AVM1DataTypes.AVM_String );
            _StackOps[ 1 ] = new StackPop( AVM1DataTypes.AVM_String );
            _StackOps[ 2 ] = new StackPush( AVM1DataTypes.AVM_String );
        }
ActionAdd