Click or drag to resize

CsvReadAll(Int32) Method

Reads all rows from the configured CSV file and returns all values as an array of doubles, along with the number of columns per row. Applies any configured filtering and handles headers as specified.

Namespace: Austra.Library
Assembly: Austra.Library (in Austra.Library.dll) Version: 2.8.0+77a1ed58155f905ef6d88f42ae024582c7e1b4c3
Syntax
C#
public (double[] , int columns) ReadAll(
	params int[] columnIndexes
)

Parameters

columnIndexes  Int32
The indexes of the columns to parse and return.

Return Value

ValueTupleDouble, Int32
A tuple containing an array of all double values in the file and the number of columns per row.
See Also