Boo.Lang.Runtime.MethodDispatcherFactory.Create C# (CSharp) Method

Create() public method

public Create ( ) : Dispatcher
return Dispatcher
        public Dispatcher Create()
        {
            Type[] types = GetArgumentTypes();
            CandidateMethod found = ResolveMethod(types);
            if (null != found) return EmitMethodDispatcher(found, types);
            return ProduceExtensionDispatcher();
        }