Writes the specified data frames to the data stream.
Namespace:
Extreme.Data
Assembly:
Extreme.Data (in Extreme.Data.dll) Version: 3.1.0
public void Write<R, C>(
IEnumerable<DataFrame<R, C>> values,
IEnumerable<string> names
)
Public Sub Write(Of R, C) (
values As IEnumerable(Of DataFrame(Of R, C)),
names As IEnumerable(Of String)
)
public:
generic<typename R, typename C>
void Write(
IEnumerable<DataFrame<R, C>^>^ values,
IEnumerable<String^>^ names
)
member Write :
values : IEnumerable<DataFrame<'R, 'C>> *
names : IEnumerable<string> -> unit
Parameters
- values
- Type: System.Collections.GenericIEnumerableDataFrameR, C
A sequence of data frames. - names
- Type: System.Collections.GenericIEnumerableString
A sequence of names corresponding to the data
frames in values.
Type Parameters
- R
- The type of the row keys of the data frame.
- C
- The type of the column keys of the data frame.
Reference