Parameters
- name
The getter just calls FindChild. The setter just calls AddChildName.
For example:
GoBasicNode n = ...;
System.Diagnostics.Debug.Assert(n["Label"] == n.Label);
Remember that you can also refer to a particular child object by its position (integer index) in this group, since GoGroup implements IList
.