Bike.Interpreter.Interpreter.CallStaticFunction C# (CSharp) Method

CallStaticFunction() public method

public CallStaticFunction ( Type type, Type typeParams, string funcName, object args ) : object
type System.Type
typeParams System.Type
funcName string
args object
return object
        public object CallStaticFunction(Type type, Type[] typeParams, string funcName, object[] args)
        {
            return PerformInvocation(type, funcName, args,
                          innerArgs => type.CallMethod(typeParams, funcName, StaticFlags, innerArgs),
                          innerArgs => type.TryCallMethodWithValues(TryConvert, funcName, typeParams, StaticFlags, innerArgs));
        }

Same methods

Interpreter::CallStaticFunction ( Type type, string funcName, object args ) : object