Reads the specified data frames from a file.
Namespace:
Extreme.Data.R
Assembly:
Extreme.Data (in Extreme.Data.dll) Version: 3.1.0
public static Dictionary<string, DataFrame<R, C>> ReadDataFrames<R, C>(
string path,
IEnumerable<string> names
)
Public Shared Function ReadDataFrames(Of R, C) (
path As String,
names As IEnumerable(Of String)
) As Dictionary(Of String, DataFrame(Of R, C))
public:
generic<typename R, typename C>
static Dictionary<String^, DataFrame<R, C>^>^ ReadDataFrames(
String^ path,
IEnumerable<String^>^ names
)
static member ReadDataFrames :
path : string *
names : IEnumerable<string> -> Dictionary<string, DataFrame<'R, 'C>>
Parameters
- path
- Type: SystemString
The file to read from. - names
- Type: System.Collections.GenericIEnumerableString
A sequence of names of the data frames to read.
Type Parameters
- R
- C
Return Value
Type:
DictionaryString,
DataFrameR,
CA dictionary containing the data frames
read from the file using their name as the key.
Reference