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,
FixedWidthTextOptions options
)
Public Shared Function ReadDataFrame (
stream As Stream,
options As FixedWidthTextOptions
) As DataFrame(Of Long, String)
public:
static DataFrame<long long, String^>^ ReadDataFrame(
Stream^ stream,
FixedWidthTextOptions^ options
)
static member ReadDataFrame :
stream : Stream *
options : FixedWidthTextOptions -> DataFrame<int64, string>
Parameters
- stream
- Type: System.IOStream
A stream. - options
- Type: Extreme.Data.TextFixedWidthTextOptions
A FixedWidthTextOptions object
that specifies the options to use when reading the file.
Return Value
Type:
DataFrameInt64,
StringThe data frame that was read from the stream
pointed to by
stream.
Reference