Boo.Lang.Runtime.MethodDispatcherFactory.GetCandidates C# (CSharp) Method

GetCandidates() private method

private GetCandidates ( ) : IEnumerable
return IEnumerable
        private IEnumerable<MethodInfo> GetCandidates()
        {
            foreach (MethodInfo method in _type.GetMethods(RuntimeServices.DefaultBindingFlags))
            {
                if (_name != method.Name) continue;
                yield return method;
            }
        }