Design Pattern Framework 3.5
Children Property
Patterns-In-Action! Application ► AspControls ► MenuCompositeItem ► Children
Gets and set list of child menu items.
Composite Design Pattern. It is trought the Children property
that an item can reference an entire list of the same objects.
Declaration Syntax
C# | Visual Basic |
public List<MenuCompositeItem> Children { get; set; }
Public Property Children As List(Of MenuCompositeItem)