An extension to the IEnumerable<(Of <(<'T>)>)> interface that allows for indexed access and retrieval of the element count.

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

Syntax

C#
[ObfuscationAttribute(StripAfterObfuscation = false, Exclude = true, 
	ApplyToMembers = true)]
public interface IListEnumerable<T> : IEnumerable<T>, 
	IEnumerable
Visual Basic
<ObfuscationAttribute(StripAfterObfuscation := False, Exclude := True,  _
	ApplyToMembers := True)> _
Public Interface IListEnumerable(Of T) _
	Inherits IEnumerable(Of T), IEnumerable

Type Parameters

T
The type of the contained elements.

Remarks

This interface is like a rudimentary read-only IList<(Of <(<'T>)>)>

See Also