Utility.CircularNext<T> Method

Returns the next 'circular' node in the linked list.
Public Shared Function CircularNext(Of  _ 
T)( _ 
ByVal listNode As LinkedListNode(Of T) _ 
) As LinkedListNode(Of T)
This language is not supported or no code example is available.
public static LinkedListNode<T> CircularNext<T>( 
LinkedListNode<T> listNode 
)
This language is not supported or no code example is available.

Type Parameters

T

<default>

Parameters

listNode
LinkedListNode<T>

Current node

Return Value

LinkedListNode<T>

The next 'circular' node.

.NET Framework

Supported in: 4.8

In this article

Definition