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

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

private GetCandidates ( ) : IEnumerable
Результат IEnumerable
        private IEnumerable<MethodInfo> GetCandidates()
        {
            foreach (MethodInfo method in _type.GetMethods(RuntimeServices.DefaultBindingFlags))
            {
                if (_name != method.Name) continue;
                yield return method;
            }
        }