Boo.Lang.Runtime.MethodDispatcherFactory.Create C# (CSharp) 메소드

Create() 공개 메소드

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