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

ActionDivide() public method

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