A generic linked list implementation.

Namespace: yWorks.Support
Assembly: yWorks.yFilesNET.Viewer (in yWorks.yFilesNET.Viewer.dll) Version: 4.1.0.1 (4.1.0.1)

Syntax

C#
public class GenericYList<T> : IList<T>, 
	ICollection<T>, IEnumerable<T>, IEnumerable
where T : class
Visual Basic
Public Class GenericYList(Of T As Class) _
	Implements IList(Of T), ICollection(Of T),  _
	IEnumerable(Of T), IEnumerable

Type Parameters

T
The type of the items in the list.

Inheritance Hierarchy

System..::..Object
  yWorks.Support..::..GenericYList<(Of <(<'T>)>)>

See Also