Reads the specified data frames from a stream.
Namespace:
Extreme.Data.R
Assembly:
Extreme.Data (in Extreme.Data.dll) Version: 3.1.0
public static Dictionary<string, DataFrame<long, string>> ReadDataFrames(
Stream stream,
IEnumerable<string> names
)
Public Shared Function ReadDataFrames (
stream As Stream,
names As IEnumerable(Of String)
) As Dictionary(Of String, DataFrame(Of Long, String))
public:
static Dictionary<String^, DataFrame<long long, String^>^>^ ReadDataFrames(
Stream^ stream,
IEnumerable<String^>^ names
)
static member ReadDataFrames :
stream : Stream *
names : IEnumerable<string> -> Dictionary<string, DataFrame<int64, string>>
Parameters
- stream
- Type: System.IOStream
The stream to read from. - names
- Type: System.Collections.GenericIEnumerableString
A sequence of names of the data frames to read.
Return Value
Type:
DictionaryString,
DataFrameInt64,
StringA dictionary containing the data frames
read from the stream using their name as the key.
Reference