Interface ILink<T>
Represents an element of a linked list with a System.String key.
Namespace: Innovator.Client
Assembly: Innovator.Client.dll
Syntax
public interface ILink<T>
where T : ILink<T>
Type Parameters
Name | Description |
---|---|
T |
Properties
| Improve this Doc View SourceName
Gets the System.String key of the list item.
Declaration
string Name { get; }
Property Value
Type | Description |
---|---|
System.String | The System.String key of the list item. |
Next
Gets or sets the next ILink<T> in the linked list.
Declaration
T Next { get; set; }
Property Value
Type | Description |
---|---|
T | The next ILink<T> in the linked list. |