UMD.HCIL.Piccolo.PNode.GetEnumerator C# (CSharp) Method

GetEnumerator() public method

Return an enumerator for this node’s direct descendent children.
This method allows you to use the foreach loop to iterate over a node's children. For example, you could do the following: foreach(PNode node in aNode) { node.DoSomething(); } Typically, you will not need to call this method directly. Instead use the ChildrenEnumerator property.
public GetEnumerator ( ) : IEnumerator
return IEnumerator
		public IEnumerator GetEnumerator() {
			return ChildrenEnumerator;
		}