Class NodeHistory<T>.Node
A class that represents a node in the history.
Inherited Members
Namespace: SpiceSharp.Simulations.Histories
Assembly: SpiceSharp.dll
Syntax
protected class NodeHistory<T>.Node
Properties
Next
Gets or sets the next node.
Declaration
public NodeHistory<T>.Node Next { get; set; }
Property Value
Type | Description |
---|---|
NodeHistory<T>.Node |
Previous
Gets or sets the previous node.
Declaration
public NodeHistory<T>.Node Previous { get; set; }
Property Value
Type | Description |
---|---|
NodeHistory<T>.Node |
Value
Gets or sets the node value.
Declaration
public T Value { get; set; }
Property Value
Type | Description |
---|---|
T |