public struct GoNodePortEnumerator : System.ValueType
public struct GoNodePortEnumerator : System.ValueType
foreach
(or For Each
) construct to iterate through the ports of a node. In C#:
foreach (IGoPort port in aNode.Ports) {
. . .
}
In VB.NET:
Dim port As IGoPort
For Each port in aNode.Ports
. . .
Next
Remember that you must not modify the graph structure of ports and links and nodes connected to this node, by adding or removing any ports, links, or nodes, while you are iterating over them. This structure type does not support comparison for equality.