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

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

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

            return (new[] { After }.Union(Parent.GetAfters())).Reverse();
        }