Click or drag to resize

CsvReadColumnT(String) Method

Reads all lines from the configured CSV file.

Namespace: Austra.Library
Assembly: Austra.Library (in Austra.Library.dll) Version: 2.8.0+e1037fa8802b3ff162e26559d763b73334940b70
Syntax
C#
public IEnumerable<T> ReadColumn<T>(
	string columnName
)
where T : struct, new(), ISpanParsable<T>

Parameters

columnName  String
The name of a numeric column to return.

Type Parameters

T
The type to convert the column values to.

Return Value

IEnumerableT
A sequence of possibly filtered lines.
See Also