Table of Contents

Delegate ReadBulkDelegate<TData>

Namespace
Hi.Common.ParallelBulkUtils
Assembly
HiGeom.dll

Delegate for reading a bulk of data from a specified range.

public delegate List<TData> ReadBulkDelegate<TData>(int begin, int end)

Parameters

begin int

The starting index (inclusive).

end int

The ending index (exclusive).

Returns

List<TData>

A list of data items from the specified range.

Type Parameters

TData

The type of data to read.

Extension Methods