List is a collection which maintains an ordering for its elements.

Namespace: yWorks.yFiles.Util
Assembly: yWorks.yFilesSilverlight.Algorithms (in yWorks.yFilesSilverlight.Algorithms.dll) Version: 2.1.0.2

Syntax

C#
public interface IList : ICollection, IList, 
	ICollection, IList<Object>, ICollection<Object>, 
	IEnumerable<Object>, IEnumerable
Visual Basic
Public Interface IList _
	Inherits ICollection, IList, ICollection, IList(Of Object),  _
	ICollection(Of Object), IEnumerable(Of Object), IEnumerable

Remarks

List is a collection which maintains an ordering for its elements. Every element in the list has an index.

See Also