[This is preliminary documentation and is subject to change.]

Enumerator that unwraps its current value form furrent value of another enumerator

Namespace: Tools.CollectionsT.GenericT
Assembly: Tools (in Tools.dll) Version: 1.5.3.38916 (1.5.3.38916)

Syntax

C#
public class UnwrapEnumerator<TEnvelope, TItem> : IEnumerator<TValue>
Visual Basic
Public Class UnwrapEnumerator(Of TEnvelope, TItem) _
	Implements IEnumerator(Of TValue)
Visual C++
generic<typename TEnvelope, typename TItem>
public ref class UnwrapEnumerator : IEnumerator<TValue>
F#
type UnwrapEnumerator<'TEnvelope, 'TItem> =  
    class
        interface IEnumerator<'TValue>
    end
JScript
JScript does not support generic types or methods.

Type Parameters

TEnvelope
Type of item in base enumerator
TItem
Type of item of this enumerator

Remarks

This enumerator utilizes unwrapping function

Inheritance Hierarchy

System..::..Object
  Tools.CollectionsT.GenericT..::..UnwrapEnumerator<(Of <(<'TEnvelope, TItem>)>)>

See Also

Collapse/expand Version History

1.5.2

  • (Nightly) Class introduced