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

ActionToString() public method

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