Eyeshot 11 WinForms API Reference
WinForms Assembly / devDept.Geometry Namespace / Utility Class / CircularNext<T> Method
Current node

In This Topic
    CircularNext<T> Method
    In This Topic
    Returns the next 'circular' node in the linked list.
    Syntax
    'Declaration
     
    Public Shared Function CircularNext(Of T)( _
       ByVal listNode As LinkedListNode(Of T) _
    ) As LinkedListNode(Of T)
    public static LinkedListNode<T> CircularNext<T>( 
       LinkedListNode<T> listNode
    )

    Parameters

    listNode
    Current node

    Type Parameters

    T

    Return Value

    The next 'circular' node.
    See Also