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();
        }