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

ActionToNumber() public method

Converts the object on the top of the stack into a number, and pushes the number back to the stack
public ActionToNumber ( ) : System
return System
        public ActionToNumber()
        {
            _StackOps = new StackChange[ 2 ];
            _StackOps[ 0 ] = new StackPop( AVM1DataTypes.AVM_ANY );
            _StackOps[ 1 ] = new StackPush( AVM1DataTypes.AVM_integer );
        }
ActionToNumber