GoDigram for .NET Framework and .NET Core
Northwoods.Go Namespace / GoPortLinkEnumerator Structure
Members
In This Topic
    GoPortLinkEnumerator Structure
    In This Topic
    Iterate over all the links connected to this port.
    Syntax
    public struct GoPortLinkEnumerator : System.ValueType 
    Remarks
    Although this structure is public, it is rarely used explicitly. Instead you should use the foreach (or For Each) construct to iterate through the links of a port. In C#:
    
                foreach (IGoLink link in aPort.Links) {
                  . . .
                }
                
    In VB.NET:
    
                Dim link As IGoLink
                For Each link in aPort.Links
                  . . .
                Next
                

    Remember that you must not modify the graph structure of links and nodes connected to this port, by adding or removing any links or nodes, while you are iterating over them. This structure type does not support comparison for equality.

    See Also