IronPython.Runtime.Method.Call C# (CSharp) Method

Call() private method

private Call ( CodeContext context, object>.[ kwArgs ) : object
context CodeContext
kwArgs object>.[
return object
        public object Call(CodeContext/*!*/ context, [ParamDictionary]IDictionary<object, object> kwArgs, params object[] args) {
            return PythonContext.GetContext(context).CallWithKeywords(this, args, kwArgs);
        }

Same methods

Method::Call ( CodeContext context ) : object