Boo.Lang.Compiler.Steps.ProcessMethodBodies.GetPropertyAccessors C# (CSharp) Method

GetPropertyAccessors() private static method

private static GetPropertyAccessors ( IEntity entities, IEntity>.Func selector ) : IEntity[]
entities IEntity
selector IEntity>.Func
return IEntity[]
        private static IEntity[] GetPropertyAccessors(IEntity[] entities, Func<IProperty, IEntity> selector)
        {
            return entities.OfType<IProperty>().Select(selector).Distinct().ToArray();
        }
ProcessMethodBodies