LinkListNode<T> Class

A node structure for a generic Genamo.LinkList
Public Class LinkListNode(Of  _ 
T)
This language is not supported or no code example is available.
public class LinkListNode<T>
This language is not supported or no code example is available.
generic<typename T> 
public ref class LinkListNode
This language is not supported or no code example is available.
JScript does not support generic types and methods.
This language is not supported or no code example is available.

Type Parameters

T

Name Description
Public property Data Returns the object this node references.
Public property Next Gets or sets the reference to the next node from this one. null is gotten if there is no next node.
Public property Prev Gets or sets the reference to the previous node from this one. null is gotten if there is no previous node.
Top
Methods
 
Name Description
Public method Advance(int) Computes the node that is n steps away from this and returns it. n can be negative to step backwards. If the resulting node is out of list, null is returned.
Top
IGS.Genamo.LinkListNode<T>

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8

In this article

Definition