AjTalk.Language.BehaviorDoesNotUnderstandMethod.DoesNotUnderstand C# (CSharp) Method

DoesNotUnderstand() protected method

protected DoesNotUnderstand ( Interpreter interpreter, IObject self, string msgname, object args ) : object
interpreter Interpreter
self IObject
msgname string
args object
return object
        protected override object DoesNotUnderstand(Interpreter interpreter, IObject self, string msgname, object[] args)
        {
            return this.DoesNotUnderstand(interpreter.Machine, self, msgname, args);
        }

Same methods

BehaviorDoesNotUnderstandMethod::DoesNotUnderstand ( Machine machine, IObject self, string msgname, object args ) : object