Show / Hide Table of Contents

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 Source

Name

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.

| Improve this Doc View Source

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.

  • Improve this Doc
  • View Source
Back to top Copyright © 2015-2017 Microsoft
Generated by DocFX