Boo.Lang.Runtime.SliceDispatcherFactory.EmitMethodDispatcher C# (CSharp) 메소드

EmitMethodDispatcher() 개인적인 메소드

private EmitMethodDispatcher ( IEnumerable candidates ) : Dispatcher
candidates IEnumerable
리턴 Dispatcher
        private Dispatcher EmitMethodDispatcher(IEnumerable<MethodInfo> candidates)
        {
            CandidateMethod method = ResolveMethod(GetArgumentTypes(), candidates);
            if (null == method) throw MissingField();

            return new MethodDispatcherEmitter(_type, method, GetArgumentTypes()).Emit();
        }

Same methods

SliceDispatcherFactory::EmitMethodDispatcher ( MethodInfo candidate ) : Dispatcher