[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.2.0
Vertion history
- 1.5.2 (Nightly)
- Class introduced
Syntax
| C# |
|---|
public class UnwrapEnumerator<TEnvelope, TItem> : IEnumerator<TValue>
|
| Visual Basic (Declaration) |
|---|
Public Class UnwrapEnumerator(Of TEnvelope, TItem) _
Implements IEnumerator(Of TValue) |
| Visual C++ |
|---|
generic<typename TEnvelope, typename TItem>
public ref class UnwrapEnumerator : IEnumerator<TValue> |
| J# |
|---|
J# supports the use of generic APIs, but not the declaration of new ones. |
| 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
Inheritance Hierarchy
System..::.Object Tools.CollectionsT.GenericT..::.UnwrapEnumerator<(Of <(TEnvelope, TItem>)>)
See Also