Table of Contents

Class LinkedListWithClassNode<T>.Node

Namespace
AlgorithmsSW.List
Assembly
AlgorithmsSW.dll

Represents a node in the LinkedListWithClassNode<T>.

public sealed class LinkedListWithClassNode<T>.Node
Inheritance
LinkedListWithClassNode<T>.Node
Inherited Members
Extension Methods

Constructors

Node(T)

Initializes a new instance of the LinkedListWithClassNode<T>.Node class.

public Node(T item)

Parameters

item T

The item contained in this node.

Fields

Item

The contents of this node.

public T Item

Field Value

T

NextNode

The next node in the linked list. null if this is the last node.

public LinkedListWithClassNode<T>.Node? NextNode

Field Value

LinkedListWithClassNode<T>.Node

Methods

ToString()

Returns a string that represents the current object.

public override string ToString()

Returns

string

A string that represents the current object.