A composite enumerator that enumerates two given enumerators one after the other.

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

Syntax

C#
public sealed class CompositeEnumerator<T, R, S> : IEnumerator<T>, 
	IDisposable, IEnumerator
where R : T
where S : T
Visual Basic
Public NotInheritable Class CompositeEnumerator(Of T, R As T, S As T) _
	Implements IEnumerator(Of T), IDisposable, IEnumerator

Type Parameters

T
The type of this enumerator.
R
The type of the items in the first enumeration.
S
The type of the items in the second enumeration.

Inheritance Hierarchy

System..::..Object
  yWorks.Support..::..CompositeEnumerator<(Of <(<'T, R, S>)>)>

See Also