Reads all 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>> ReadAllDataFrames<R, C>(
string path
)
Public Shared Function ReadAllDataFrames(Of R, C) (
path As String
) As Dictionary(Of String, DataFrame(Of R, C))
public:
generic<typename R, typename C>
static Dictionary<String^, DataFrame<R, C>^>^ ReadAllDataFrames(
String^ path
)
static member ReadAllDataFrames :
path : string -> Dictionary<string, DataFrame<'R, 'C>>
Parameters
- path
- Type: SystemString
The file to read from.
Type Parameters
- R
- C
Return Value
Type:
DictionaryString,
DataFrameR,
CA dictionary containing all the data frames
read from the file using their name as the key.
Reference