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

Namespace: yWorks.Support
Assembly: yWorks.yFilesSilverlight.Viewer (in yWorks.yFilesSilverlight.Viewer.dll) Version: 2.1.0.2

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