FixedWidthTextStream.ReadDataFrame Method

Definition

Namespace: Extreme.Data.Text
Assembly: Extreme.Data (in Extreme.Data.dll) Version: 3.2.0

Overload List

ReadDataFrame<R>(Int32, Boolean) Reads a data frame from the file.
ReadDataFrame<R>(String, Boolean) Reads a data frame from the file.
ReadDataFrame<R, C>() Reads the data frame at the current position in the file.
ReadDataFrame<R, C>(C, Boolean) Reads a data frame from the file.

FixedWidthTextStream.ReadDataFrame<R, C>

Reads the data frame at the current position in the file.
C#
public override DataFrame<R, C> ReadDataFrame<R, C>()

Type Parameters

R
The type of the row keys of the data frame.
C
The type of the column keys of the data frame.

Return Value

DataFrame<R, C>
A data frame containing the data.

See Also