关于[C# Design Patterns - Composite Design Pattern]的摘要:
The Composite design pattern is a structural design pattern which allows us to compose objects into a tree structure and then work with that structure as if it is a single object. That also means using the Composite design pattern makes sense when the part of our app can be represented as a tree. In this article, we are going to learn how to implement the Composite Design Pattern into our project and what are its benefits.