Boo.Lang.Compiler.TypeSystem.CallableSignature.CallableSignature C# (CSharp) Method

CallableSignature() public method

public CallableSignature ( IMethod method ) : System
method IMethod
return System
        public CallableSignature(IMethod method)
        {
            if (null == method)
            {
                throw new ArgumentNullException("method");
            }
            Initialize(method.GetParameters(), method.ReturnType, method.AcceptVarArgs);
        }

Same methods

CallableSignature::CallableSignature ( IParameter parameters, IType returnType ) : System
CallableSignature::CallableSignature ( IParameter parameters, IType returnType, bool acceptVarArgs ) : System