Bike.Interpreter.Interpreter.CallInstanceFunction C# (CSharp) Метод

CallInstanceFunction() публичный Метод

public CallInstanceFunction ( object target, Type typeParams, string funcName, object args ) : object
target object
typeParams System.Type
funcName string
args object
Результат object
        public object CallInstanceFunction(object target, Type[] typeParams, string funcName, object[] args)
        {
            return PerformInvocation(target, funcName, args,
                          innerArgs => target.WrapIfValueType().CallMethod(typeParams, funcName, InstanceFlags, innerArgs),
                          innerArgs => target.TryCallMethodWithValues(TryConvert, funcName, typeParams, InstanceFlags, innerArgs));
        }

Same methods

Interpreter::CallInstanceFunction ( object target, string funcName, object args ) : object