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();
        }