Boo.Lang.Runtime.MethodDispatcherFactory.ProduceExtensionDispatcher C# (CSharp) Метод

ProduceExtensionDispatcher() приватный Метод

private ProduceExtensionDispatcher ( ) : Dispatcher
Результат Dispatcher
        private Dispatcher ProduceExtensionDispatcher()
        {
            CandidateMethod found = ResolveExtensionMethod();
            if (found == null) throw new System.MissingMethodException(_type.FullName, _name);
            return EmitExtensionDispatcher(found);
        }