FANN C# IAccessor<T> Interface

Summary
FANN C# IAccessor<T> Interface
IAccessor<T>An enumerable interface that provides a count of elements in the accessor and random, read-only access to its elements.
Properties
CountThe number of elements in the accessor.
ItemProvides access to the element at index

IAccessor<T>

An enumerable interface that provides a count of elements in the accessor and random, read-only access to its elements.

This takes the place of IReadOnlyList if targeting a .NET Framework below 4.5 (the official release targets 2.0 for maximum compatibility)

Summary
Properties
CountThe number of elements in the accessor.
ItemProvides access to the element at index

Properties

Count

int Count { get }

The number of elements in the accessor.

Item

Provides access to the element at index

Parameters

indexthe index of the item to retrieve
int Count { get }
The number of elements in the accessor.
Close