Beispiel #1
0
 /// <summary>
 /// Modifies this node to be a SUBDIVISION node.
 /// </summary>
 /// <returns>This node, updated to a subdivision node.</returns>
 public ProductPartitionNode AsSubdivision()
 {
     nodeState = nodeState.TransitionTo(NodeType.SUBDIVISION);
     return(this);
 }