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

Method() public method

public Method ( object function, object instance ) : System.Linq.Expressions
function object
instance object
return System.Linq.Expressions
        public Method(object function, object instance) {
            if (instance == null) {
                throw PythonOps.TypeError("unbound methods must have a class provided");
            }

            _func = function;
            _inst = instance;
        }

Same methods

Method::Method ( object function, object instance, object @class ) : System.Linq.Expressions