A generic linked list implementation.

Namespace: yWorks.Support
Assembly: yWorks.yFilesWPF.Viewer (in yWorks.yFilesWPF.Viewer.dll) Version: 2.2.0.2 (2.2.0.2)

Syntax

C#
public class GenericYList<T> : INotifyCollectionChanged, 
	INotifyPropertyChanged, IList<T>, ICollection<T>, IEnumerable<T>, IEnumerable
where T : class
Visual Basic
Public Class GenericYList(Of T As Class) _
	Implements INotifyCollectionChanged, INotifyPropertyChanged, 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