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

ActionStrictEquals() public method

is similar to ActionEquals2, but the two arguments must be of the same type in order to be considered equal. Implements the ‘===’ operator from the ActionScript language.
public ActionStrictEquals ( ) : System
return System
        public ActionStrictEquals()
        {
            _StackOps = new StackChange[ 3 ];
            _StackOps[ 0 ] = new StackPop( AVM1DataTypes.AVM_ANY );
            _StackOps[ 1 ] = new StackPop( AVM1DataTypes.AVM_ANY );
            _StackOps[ 2 ] = new StackPush( AVM1DataTypes.AVM_boolean );
        }
ActionStrictEquals