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
| Edit this page View SourceItems
Gets the array of visited items.
Declaration
public IList<T> Items { get; }
Property Value
| Type | Description |
|---|---|
| IList<T> |
Methods
| Edit this page View SourceVisitItem(T)
Visits an item.
Declaration
public void VisitItem(T item)
Parameters
| Type | Name | Description |
|---|---|---|
| T | item | The item to visit. |