Reads a data frame from a stream in fixed-width text format.
Namespace:
Extreme.Data.Text
Assembly:
Extreme.Data (in Extreme.Data.dll) Version: 3.1.0
public static DataFrame<long, string> ReadDataFrame(
Stream stream,
int[] columnBreaks
)
Public Shared Function ReadDataFrame (
stream As Stream,
columnBreaks As Integer()
) As DataFrame(Of Long, String)
public:
static DataFrame<long long, String^>^ ReadDataFrame(
Stream^ stream,
array<int>^ columnBreaks
)
static member ReadDataFrame :
stream : Stream *
columnBreaks : int[] -> DataFrame<int64, string>
Parameters
- stream
- Type: System.IOStream
A stream. - columnBreaks
- Type: SystemInt32
An integer array containing the zero-based indexes of the column breaks on each row.
Return Value
Type:
DataFrameInt64,
StringThe data frame that was read from the stream
pointed to by
stream.
Reference