Class ArrayListVisitor<T>
Builds an array of all visited items.
Implements
IItemVisitor<T>
Inherited Members
Namespace: NetTopologySuite.Index
Assembly: NetTopologySuite.dll
Syntax
public class ArrayListVisitor<T> : IItemVisitor<T>
Type Parameters
Name | Description |
---|---|
T |
Properties
| Improve this Doc View SourceItems
Gets the array of visited items.
Declaration
public IList<T> Items { get; }
Property Value
Type | Description |
---|---|
IList<T> |
Methods
| Improve this Doc View SourceVisitItem(T)
Visits an item.
Declaration
public void VisitItem(T item)
Parameters
Type | Name | Description |
---|---|---|
T | item | The item to visit. |