Boo.Lang.Runtime.MethodDispatcherFactory.ProduceExtensionDispatcher C# (CSharp) Méthode

ProduceExtensionDispatcher() private méthode

private ProduceExtensionDispatcher ( ) : Dispatcher
Résultat Dispatcher
        private Dispatcher ProduceExtensionDispatcher()
        {
            CandidateMethod found = ResolveExtensionMethod();
            if (found == null) throw new System.MissingMethodException(_type.FullName, _name);
            return EmitExtensionDispatcher(found);
        }