Class Iterator<T>
Assembly: PDFTronDotNet.dll
Syntax
public abstract class Iterator<T> : IDisposable
Type Parameters
Methods
Current()
Declaration
public abstract T Current()
Returns
Dispose()
Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
Declaration
Dispose(bool)
Declaration
protected virtual void Dispose(bool disposing)
Parameters
Type |
Name |
Description |
bool |
disposing |
|
~Iterator()
Declaration
HasNext()
Determine if true if the iteration has more elements.
Declaration
Returns
Type |
Description |
bool |
true if the iteration has more elements.
|
Next()
iterates to next T
object
Declaration
op_Assign(Iterator<T>)
Declaration
public Iterator<T> op_Assign(Iterator<T> other)
Parameters
Returns
Implements