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