Bickle.ExampleContainer.GetBefores C# (CSharp) Метод

GetBefores() защищенный Метод

protected GetBefores ( ) : IEnumerable
Результат IEnumerable
        protected IEnumerable<Action> GetBefores()
        {
            if (Parent == null)
                return new[] { Before };

            return new[] { Before }.Union(Parent.GetBefores());
        }