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

ActionDefineLocal() public method

Defines a local variable and sets its value. If the variable already exists, the value is set to the newly specified value.
public ActionDefineLocal ( ) : System
return System
        public ActionDefineLocal()
        {
            _StackOps = new StackChange[ 2 ];
            _StackOps[ 0 ] = new StackPop( AVM1DataTypes.AVM_ANY ); // value
            _StackOps[ 1 ] = new StackPop( AVM1DataTypes.AVM_String ); // name
        }
ActionDefineLocal